-
Notifications
You must be signed in to change notification settings - Fork 966
/
package.json
58 lines (58 loc) · 1.23 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
54
55
56
57
58
{
"name": "javascript-state-machine",
"description": "A finite state machine library",
"homepage": "https://github.com/jakesgordon/javascript-state-machine",
"repository": {
"type": "git",
"url": "git://github.com/jakesgordon/javascript-state-machine.git"
},
"keywords": [
"finite state machine",
"state machine",
"server",
"client"
],
"author": {
"name": "Jake Gordon",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Jake Gordon",
"email": "[email protected]"
}
],
"license": "MIT",
"main": "lib/state-machine.js",
"files": [
"lib/**/*.js",
"dist/**/*.js"
],
"directories": {},
"devDependencies": {
"ava": "^0.17.0",
"fs-sync": "^1.0.3",
"glob": "^7.1.1",
"nyc": "^10.0.0",
"pascal-case": "^2.0.0",
"uglify-js": "^2.7.5",
"webpack": "^2.2.0-rc.1"
},
"version": "3.1.0",
"scripts": {
"start": "npm run watch",
"build": "npm run bundle && npm run minify",
"bundle": "webpack",
"minify": "bin/minify",
"watch": "ava --watch",
"test": "nyc ava -v && nyc report --reporter=html"
},
"ava": {
"files": [
"test/**/*.js"
],
"source": [
"src/**/*.js"
]
}
}