-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.82 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
61
62
63
64
65
66
67
68
69
70
71
{
"scripts": {
"build": "./node_modules/.bin/babel src -d lib",
"create-fake": "node lib/create-demo-data.js fake",
"create-sample": "node lib/create-demo-data.js sample",
"happy": "mocha -u exports -R spec --colors lib/happy-path-end-to-end.js",
"test": "ava --verbose",
"cs": "ava --verbose src/tests/commitStreamGlobalUI.js",
"cu": "ava --verbose src/tests/commitStreamCustomUI.js",
"ca": "ava --verbose src/tests/commitStreamAPI.js"
},
"dependencies": {
"bluebird": "^3.3.4",
"commander": "^2.9.0",
"eventstore-client": "openAgile/eventstore-client",
"fs": "0.0.2",
"mocha": "^2.4.5",
"mocha-tap-reporter": "^0.1.3",
"ramda": "^0.13.0",
"request": "^2.69.0",
"request-promise": "^2.0.1",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"underscore": "^1.8.3",
"uuid-v4": "^0.1.0"
},
"devDependencies": {
"ava": "^0.16.0",
"axios": "^0.15.2",
"babel-cli": "^6.4.5",
"babel-plugin-espower": "^2.3.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"chai-diff": "^1.0.1",
"glance-webdriver": "^0.6.2",
"grunt": "^0.4.5",
"grunt-babel": "^6.0.0",
"grunt-contrib-watch": "^0.6.1",
"load-grunt-tasks": "^3.4.0",
"lodash": "^4.17.2",
"selenium-standalone": "^5.8.0",
"v1sdk": "^2.2.2"
},
"ava": {
"files": [
"src/tests/*.js"
],
"source": [
"**/dependencies/*.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"espower",
"transform-runtime"
]
}
}