-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
47 lines (47 loc) · 945 Bytes
/
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
{
"name": "statechart",
"version": "0.1.1",
"description": "StateChart implementation.",
"homepage": "http://github.com/DavidDurman/statechart/",
"author": "David Durman <[email protected]>",
"keywords": [
"statechart",
"state machine"
],
"repository": {
"type": "git",
"url": "https://github.com/DavidDurman/statechart.git"
},
"bugs": {
"web": "http://github.com/DavidDurman/statechart/issues/",
"mail": "[email protected]"
},
"directories": {
"doc": "./doc",
"lib": "./lib",
"test": "./test"
},
"main": "./lib/statechart.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --reporter spec"
},
"engines": [
"v8",
"ejs",
"node",
"rhino",
"browser"
],
"licenses": [
{
"type": "MIT"
}
],
"devDependencies": {
"underscore": "~1.4.3",
"expect.js": "~0.2.0",
"mocha": "~1.8.1"
},
"dependencies": {
}
}