forked from jbeard4/SCION
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.08 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
{
"name": "scxml",
"version": "2.0.14",
"description": "An implementation of SCXML in JavaScript.",
"keywords": [
"scxml",
"statecharts",
"w3c",
"javascript"
],
"maintainers": [
{
"name": "Jacob Beard",
"email": "[email protected]",
"url": "http://echo-flow.com"
}
],
"bugs": {
"email": "[email protected]",
"url": "https://github.com/jbeard4/SCION/issues"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "https://github.com/jbeard4/SCION/blob/master/LICENSE.txt"
}
],
"repository": {
"type": "git",
"url": "https://github.com/jbeard4/SCION.git"
},
"implements": [
"http://www.w3.org/TR/scxml/"
],
"dependencies": {
"esprima": "~1.2.2",
"sax": "0.6.0",
"scion-core": "1.1.3"
},
"devDependencies": {
"browserify": "^13.0.0",
"karma": "~0.8",
"optimist": "0.6.1"
},
"engines": {
"node": ">=0.10",
"npm": ">=2.0.0"
},
"main": "./lib/runtime/platform-bootstrap/node/index.js",
"scripts": {
"test": "cd test && bash run-tests-node.sh"
}
}