This repository was archived by the owner on Nov 12, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.57 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.57 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "ausgaben",
"version": "0.0.18",
"API_VERSION": 1,
"description": "Ausgaben – Your personal spendings tracker",
"repository": {
"type": "git",
"url": "git+https://github.com/ausgaben/ausgaben-node.git"
},
"author": "Markus Tacker <m@coderbyheart.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ausgaben/ausgaben-node/issues"
},
"homepage": "https://github.com/ausgaben/ausgaben-node#readme",
"dependencies": {
"angular": "^1.5.7",
"angular-bluebird-promises": "^1.0.1",
"angular-ui-router": "^1.0.0-alpha.5",
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"bootstrap": "git://github.com/twbs/bootstrap.git#v4-dev",
"browserify": "^14.0.0",
"browserify-shim": "^3.8.12",
"express": "^4.14.0",
"fast-url-parser": "^1.1.3",
"jquery": "^3.0.0",
"jsonwebtoken": "^7.1.7",
"keypair": "^1.0.0",
"lodash": "^4.11.1",
"material-design-icons": "^3.0.1",
"nconf": "^0.8.4",
"node-sass": "^4.0.0",
"node-templater-mailer-microservice-client": "0.0.2",
"passport": "^0.3.2",
"passport-http-bearer": "^1.0.1",
"pg": "^6.0.1",
"pg-hstore": "^2.3.2",
"pg-native": "^1.8.1",
"request-promise": "^4.1.0",
"sequelize": "^3.23.4",
"tether": "^1.1.1",
"uglifycss": "0.0.26",
"uglifyjs": "^2.4.10",
"yargs": "^7.0.2"
},
"scripts": {
"dev-server": "./node_modules/nodemon/bin/nodemon.js -e 'js,html,css' -w ./build -w ./server -w ./util -w ./config.json -w ./config.local.json -d 1 ./server/server.js --environment=development",
"test": "environment=testing mocha --reporter=spec --require=server/server.js --timeout=1350 test/\\*\\*/\\*.js",
"test:api": "environment=testing mocha --reporter=spec --require=server/server.js --timeout=1350 test/yadda/\\*\\*/\\*.js",
"test:backend": "environment=testing mocha --reporter=spec --require=server/server.js --timeout=1350 test/mocha/\\*\\*/\\*.js",
"test:coverage": "environment=testing ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec --require=server/server.js --timeout=1350 test/\\*\\*/\\*.js && cat ./coverage/lcov.info | codacy-coverage && rm -rf ./coverage",
"lint": "npm run lint:backend && npm run lint:web",
"lint:backend": "./node_modules/eslint/bin/eslint.js -c .eslintrc server util test",
"lint:web": "./node_modules/eslint/bin/eslint.js -c web/js/.eslintrc web/js"
},
"devDependencies": {
"chai": "^3.4.1",
"codacy-coverage": "^2.0.0",
"eslint": "^3.2.0",
"istanbul": "^0.4.4",
"mocha": "^3.0.0",
"mocha-lcov-reporter": "^1.0.0",
"nodemon": "^1.3.7",
"should": "^11.0.0",
"simple-mock": "^0.7.0",
"superagent": "^3.0.0",
"supertest": "^3.0.0",
"toposort": "^1.0.0",
"yadda": "^1.1.1"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"jquery": "./node_modules/jquery/dist/jquery.js",
"angular": "./node_modules/angular/angular.js",
"angular-ui-router": "./node_modules/angular-ui-router/release/angular-ui-router.js",
"tether": "./node_modules/tether/dist/js/tether.js",
"bootstrap": "./node_modules/bootstrap/dist/js/bootstrap.js",
"bluebird": "./node_modules/bluebird/js/browser/bluebird.js"
},
"browserify-shim": {
"jquery": {
"exports": "$"
},
"angular": {
"exports": "angular",
"depends": "jquery"
},
"angular-ui-router": {
"depends": "angular"
},
"bootstrap": {
"exports": "bootstrap",
"depends": [
"tether",
"jquery"
]
}
}
}