-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
{
"name": "ongboook",
"version": "1.0.0",
"description": "Catálogo de Entidades",
"main": "src/ongbook.js",
"scripts": {
"start": "./node_modules/.bin/node server.js",
"watch": "./node_modules/.bin/nodemon server.js",
"coverage": "nyc npm test",
"coverage:lcov": "nyc --reporter=lcov --reporter=text-lcov npm test",
"coveralls": "npm run coverage:lcov && cat ./coverage/lcov.info | coveralls",
"test": "mocha --recursive tests/**/*.js"
},
"keywords": [
"ongbook",
"ngo",
"community"
],
"author": "Ongbook Team Developer",
"license": "MIT",
"devDependencies": {
"angular-mocks": "^1.6.6",
"babel-eslint": "^7.2.3",
"chai": "^4.1.2",
"connect": "^3.6.5",
"coveralls": "^2.13.1",
"eslint": "^4.6.1",
"eslint-plugin-angular": "^3.1.1",
"eslint-plugin-import": "^2.7.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-ng-annotate": "^2.0.0",
"gulp-uglify": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.12.1",
"nyc": "^11.2.1",
"serve-static": "^1.13.1"
},
"dependencies": {
"@uirouter/angularjs": "^1.0.12",
"angular": "^1.6.6",
"angular-animate": "^1.6.6",
"angular-touch": "^1.6.6",
"angular-ui-bootstrap": "^2.5.3",
"angularjs-toaster": "^2.2.0",
"bootstrap": "^3.3.7",
"connect": "^3.6.5",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"serve-static": "^1.13.1"
},
"engines": {
"node": "6.9.2"
}
}