-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.59 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.59 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
{
"name": "d-pac.cms",
"version": "0.19.12",
"dependencies": {
"async": "1.5.2",
"bluebird": "3.4.0",
"chalk": "1.1.1",
"comparative-selection": "6.0.3",
"connect-mongo": "1.1.0",
"cors": "2.7.1",
"d-pac.functions": "2.1.0",
"d-pac.misfits": "^1.2.0",
"d-pac.plugins-spec": "0.5.0",
"debug": "2.2.0",
"deep-diff": "0.3.3",
"deep-extend": "0.4.1",
"errors": "0.3.0",
"estimating-rasch-model": "5.1.0",
"extract-zip": "1.4.1",
"fast-csv": "1.0.0",
"forever": "0.15.3",
"grappling-hook": "3.0.0",
"jade": "1.11.0",
"keystone": "github:d-pac/keystone#v0.3.22-dpac.4",
"keystone-utils": "0.4.0",
"konfy": "0.2.1",
"lodash": "4.5.0",
"microtime": "2.1.1",
"mime": "1.3.4",
"mkdir-p": "0.0.7",
"moment": "2.11.2",
"moment-range": "2.1.0",
"mongoose": "4.5",
"mongoose-auto-increment": "5.0.1",
"mongoose-deep-populate": "3.0.0",
"mv": "^2.1.1",
"node-dir": "0.1.11",
"node-schedule": "1.0.0",
"proxyquire": "1.7.4",
"rimraf": "2.5.2",
"semver": "5.1.0",
"uuid": "2.0.1"
},
"devDependencies": {
"eslint": "2.11.1",
"eslint-config-prototypers": "0.2.0",
"mocha": "2.4.5",
"mockgoose": "6.0.8",
"must": "0.13.1",
"properties": "1.2.1",
"require-directory": "2.1.1",
"sinon": "^1.17.3",
"supertest": "1.1.0"
},
"engines": {
"node": "6.9.5"
},
"scripts": {
"prestart": "dockerize -wait tcp://mongo:27017 ",
"start": "node app/server.js",
"start:dev": "node app/server.js",
"test": "yarn run test:units && yarn run test:integration",
"test:units": "NODE_ENV=test DEBUG=dpac:tests* mocha tests/units/**/*.spec.js -R spec --bail --timeout 60000",
"test:e2e": "NODE_ENV=test DEBUG=dpac:tests* mocha tests/e2e/*.test.js -R spec --delay --bail --timeout 60000",
"test:integration": "NODE_ENV=test DEBUG=dpac:tests* mocha tests/integration/*.test.js -R spec --delay --bail --timeout 60000",
"preserve:test": "dockerize -wait tcp://mongo:27017 ",
"serve:test": "NODE_ENV=test DEBUG=dpac:* node $NODE_DEBUG_OPTION app/server.js",
"lint": "eslint app && eslint tests && echo 'Linting finished!'",
"lint:fix": "eslint app --fix && eslint tests --fix && echo 'Lint fixing finished!'"
},
"d-pac": {
"api": "0.2.0",
"plugins": "0.4.0"
},
"optionalDependencies": {
"equalviews-comparative-selection": "git+ssh://git@bitbucket.org/iminds/equalviews-comparative-selection.git#v3.0.1",
"positioned-comparative-selection": "git+ssh://git@bitbucket.org/iminds/positioned-comparative-selection.git#v2.1.0"
}
}