-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 910 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
{
"name": "micro-machine",
"version": "0.6.0",
"description": "Minimal state machine implementation.",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/grunt test",
"build": "node_modules/.bin/grunt"
},
"repository": {
"type": "git",
"url": "git://github.com/shime/micro-machine.git"
},
"keywords": [
"state",
"machine",
"micro"
],
"author": "Hrvoje Simic <[email protected]>",
"licenses": [
{
"type": "UNLICENSE",
"url": "https://github.com/shime/micro-machine/blob/master/UNLICENSE"
}
],
"bugs": {
"url": "https://github.com/shime/micro-machine/issues"
},
"homepage": "https://github.com/shime/micro-machine",
"devDependencies": {
"grunt": "*",
"grunt-cli": "*",
"grunt-jasmine-node": "*",
"grunt-contrib-uglify": "*",
"grunt-contrib-watch": "*",
"grunt-contrib-concat": "*"
}
}