-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.71 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
{
"name": "statem",
"version": "0.6.1",
"description": "Harel Statecharts state machine with code generation from SCXML statecharts",
"main": "dist/index.js",
"bin": {
"watch": "./node_modules/watchman/watchman"
},
"scripts": {
"test": "npm run gen;mocha ./test/*.js --require babel-core/register --require babel-polyfill --require mocha-steps --timeout 1000;rm test/genstate.js",
"watch": "./node_modules/watchman/watchman test/test.scxml 'npm run gen'",
"gen": "node src/parser.js test/test.scxml test/genstate.js test",
"build": "babel src -d dist --presets es2015,react,stage-1 --plugins transform-decorators-legacy",
"serve": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aksonov/statem.git"
},
"author": "Pavlo Aksonov",
"license": "ISC",
"bugs": {
"url": "https://github.com/aksonov/statem/issues"
},
"homepage": "https://github.com/aksonov/statem#readme",
"dependencies": {
"assert": "^1.3.0",
"autobind-decorator": "^1.3.3",
"mobx": "^3.0.0",
"mustache": "^2.2.1",
"scion-core": "github:hippware/scion-core#1.5.4-own",
"scxml": "^2.0.13",
"watchman": "^0.1.8"
},
"devDependencies": {
"babel-core": "^6.3.21",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"chai": "^3.5.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.5.0",
"eslint-plugin-jsx-a11y": "^1.0.2",
"eslint-plugin-react": "^5.0.1",
"expect": "^1.13.0",
"mocha": "^2.3.4",
"mocha-steps": "^0.0.1"
}
}