This repository was archived by the owner on Nov 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.75 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "cida",
"version": "1.0.0",
"description": "Aplicación de ejemplo para la integración continua en aplicaciones AngularJS con Brunch, haciendo uso de JSHint o Sass, entre otras.",
"engines": {
"node": "6.10.0",
"npm": "3.10.10"
},
"scripts": {
"start": "node server",
"test": "karma start ./karma.config.js",
"prod": "brunch build --production",
"postprod": "http-server public",
"preinstall": "rm -rf public && rm -rf node_modules && rm -rf bower_components",
"postinstall": "bower install && brunch build --production && node node_modules/ngdocs/bin/ngdocs.js && cp -f app/assets/docs/index.html public/docs/index.html && cp -f app/assets/images/tecnologia_brunch.png public/docs/img/logo.png"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jualoppaz/cida.git"
},
"keywords": [
"angular",
"node",
"brunch",
"sass",
"jshint",
"ngdocs",
"npm",
"bower"
],
"author": "Juan Manuel López Pazos",
"license": "MIT",
"bugs": {
"url": "https://github.com/jualoppaz/cida/issues"
},
"homepage": "https://github.com/jualoppaz/cida#readme",
"dependencies": {
"after-brunch": "0.0.5",
"angularjs-templates-brunch": "^1.0.0",
"auto-reload-brunch": "^2.7.1",
"bower": "^1.8.0",
"brunch": "^2.10.8",
"clean-css-brunch": "^2.0.0",
"digest-brunch": "^1.5.1",
"express": "^4.14.1",
"jasmine-core": "^2.4.1",
"karma": "^1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.0.2",
"less-brunch": "^2.6.0",
"ngdocs": "^0.1.0",
"sass-brunch": "^2.6.3",
"statik": "^1.4.6",
"uglify-js-brunch": "^2.0.1"
},
"devDependencies": {
"jshint-brunch": "^2.0.0"
}
}