-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.39 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
77
78
79
80
81
82
83
84
85
86
{
"private": true,
"name": "fsm-engine",
"version": "0.0.25",
"description": "",
"repository": "moraispgsi/fsm-engine",
"author": "Ricardo Morais <[email protected]> (https://www.INSTICC.org)",
"license": "MIT",
"keywords": [],
"main": "index.js",
"jsnext:main": "index.es.js",
"babel": {
"presets": [
"latest",
"stage-0"
],
"plugins": [
"transform-runtime"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb-base"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"better-npm-run": "^0.1.0",
"co": "latest",
"date-utils": "^1.2.21",
"debug": "latest",
"dush": "^3.0.4",
"fsm-core": "1.0.43",
"install": "^0.10.1",
"kue": "^0.11.6",
"node-schedule": "^1.2.3",
"npm": "^5.3.0",
"queue": "^4.2.1",
"moment": "latest",
"moment-business-days": "^1.0.6",
"request": "^2.81.0",
"scxml": "https://github.com/moraispgsi/SCION.git#519593021e0ccd5abef5529db5cfa733f7e88dc8",
"sprintf-js": "^1.1.1"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"chai": "^4.0.0-canary.1",
"coveralls": "^2.11.14",
"del": "^2.2.2",
"eslint": "^3.8.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^1.1.0-alpha.1",
"jsdoc-strip-async-await": "^0.1.0",
"mocha": "^3.1.2",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-includepaths": "^0.2.2",
"sinon": "^2.0.0-pre.3"
},
"scripts": {
"lint": "eslint src test tools",
"test": "mocha --compilers js:babel-register",
"test:watch": "mocha --compilers js:babel-register --reporter min --watch",
"test:cover": "babel-node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "node tools/build",
"prepublish": "npm run build",
"publish:docs": "easystatic deploy docs --repo kriasoft/babel-starter-kit",
"start": "easystatic start docs"
},
"betterScripts": {
"cluster": {
"command": "daemon.js",
"env": {
"NODE_ENV": "production",
"DEBUG": "instance-log"
}
}
}
}