-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 850 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
{
"name": "smjs",
"version": "0.3.0",
"description": "JavaScript State Machine",
"main": "sm.js",
"shortName": "sm",
"scripts": {
"test": "grunt test --verbose"
},
"repository": {
"type": "git",
"url": "[email protected]:pgularski/smjs.git"
},
"keywords": [
"hierarchical",
"state",
"machine",
"pushdown",
"automaton",
"automata",
"fsm",
"hsm",
"pda"
],
"author": "Piotr Gularski",
"license": "MIT",
"bugs": {
"url": "https://github.com/pgularski/smjs/issues"
},
"devDependencies": {
"grunt": "~1.0.1",
"grunt-contrib-jshint": "~1.0.0",
"grunt-contrib-nodeunit": "~1.0.0",
"grunt-contrib-uglify": "~1.0.1",
"grunt-contrib-qunit": "~1.2.0",
"qunitjs": "~2.0.0-rc1",
"grunt-contrib-connect": "~1.0.2",
"grunt-contrib-copy": "~1.0.0"
}
}