forked from jakesgordon/javascript-state-machine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 853 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
{
"name": "javascript-state-machine",
"description": "A simple finite state machine library",
"homepage": "https://github.com/jakesgordon/javascript-state-machine",
"keywords": [
"state machine",
"server",
"client"
],
"author": "Jake Gordon <jake@codeincomplete.com>",
"repository": {
"type": "git",
"url": "git://github.com/jakesgordon/javascript-state-machine.git"
},
"main": "state-machine.js",
"files": [
"state-machine.js",
"state-machine.min.js",
"LICENSE"
],
"devDependencies": {
"local-web-server": "~1.2.6",
"qunit": "~0.9.1",
"uglify-js": "^2.7.4"
},
"version": "2.4.0",
"scripts": {
"start": "ws --rewrite '/test -> /test/'",
"test": "node test/runner",
"minify": "uglifyjs state-machine.js --output state-machine.min.js --compress --mangle --stats"
}
}