-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 2.63 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
72
73
74
75
76
{
"name": "yaktor",
"description": "Event-driven, asynchronous, distributed, multi-party state-machine",
"version": "0.63.0-pre.0",
"license": "Apache-2.0",
"main": "index.js",
"dependencies": {
"async": "1.5.2",
"commander": "2.0.0",
"config-cev-generator": "0.1.6",
"debug": "2.2.0",
"fs-extra": "0.30.0",
"lodash": "4.13.1",
"which": "1.0.5",
"semver": "5.2.0"
},
"devDependencies": {
"backo": "1.0.1",
"bluebird": "3.3.4",
"grunt": "1.0.1",
"grunt-bump": "0.8.0",
"grunt-git": "1.0.0",
"grunt-coveralls": "1.0.1",
"grunt-shell": "1.3.0",
"istanbul": "0.4.4",
"js-yaml": "3.6.1",
"jxon": "1.6.1",
"load-grunt-tasks": "3.5.0",
"mocha": "2.3.4",
"mockgoose": "4.0.1",
"mongoose": "4.4.14",
"mongoose-pagination": "1.0.0",
"mongoose-shortid-nodeps": "0.6.5",
"mqtt": "1.7.4",
"nice-xml": "0.1.1",
"node-uuid": "1.4.2",
"proxyquire": "1.0.1",
"standard": "8.0.0",
"shared-git-hooks": "1.2.1",
"underscore": "1.7.0",
"winston": "0.7.1",
"yaktor-lang": "0.54.1"
},
"engines": {
"node": ">=4.4.4"
},
"scripts": {
"patch": "grunt release-patch",
"minor": "grunt release-minor",
"gen-src": "find . test/dsls -maxdepth 1 -name '*.yc' -o -name '*.ydm' | xargs yaktor-lang",
"test-only": "mocha --color=true --timeout 10000 -R spec test/*.test.js",
"test": "npm run test-only && npm run lint-staged",
"test-cover": "istanbul cover _mocha -- --colors --timeout 10000 -R spec test/*.test.js && npm run lint",
"pre-commit": "npm run clean && npm run gen-src && npm run test-cover",
"ci": "npm run test-cover",
"format": "standard --fix $(git diff --name-only HEAD | grep -e '\\.js$')",
"format-all": "standard --fix",
"lint": "export JS_FILES=\"$(git diff --name-only HEAD | grep -e '\\.js$' | tr \"\n\" ' ')\" && if [ -n \"$JS_FILES\" ]; then standard -v $JS_FILES; fi",
"lint-staged": "export JS_FILES=\"$(git diff --name-only --cached | grep -e '\\.js$' | tr \"\n\" ' ')\" && if [ -n \"$JS_FILES\" ]; then standard -v $JS_FILES; fi",
"lint-all": "standard -v",
"clean": "rm -rf actions config/initializers/10_routes.js conversations doc public routes servers simulator src-gen",
"nuke": "npm run clean && rm -rf node_modules",
"env": "cev --prefix YAKTOR_APP > config/custom-environment-variables.json"
},
"bin": {
"yaktor": "./bin/yaktor.js",
"yaktor-repl": "./bin/repl.js",
"yak": "./bin/yak",
"yak-up": "./bin/yak-up",
"yak-down": "./bin/yak-down"
},
"repository": {
"type": "git",
"url": "https://github.com/SciSpike/yaktor.git"
}
}