forked from taoqf/javascript-state-machine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.21 KB
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
59
60
61
62
63
{
"name": "@taoqf/javascript-state-machine",
"description": "A finite state machine library",
"homepage": "https://github.com/taoqf/javascript-state-machine",
"repository": {
"type": "git",
"url": "git@github.com:taoqf/javascript-state-machine.git"
},
"types": "dist/state-machine.d.ts",
"keywords": [
"finite state machine",
"state machine",
"server",
"client"
],
"author": {
"name": "taoqf",
"email": "tao_qiufeng@126.com"
},
"maintainers": [
{
"name": "taoqf",
"email": "tao_qiufeng@126.com"
}
],
"license": "MIT",
"main": "dist/state-machine.js",
"files": [
"docs/*",
"examples/*",
"dist/**/*.js",
"dist/**/*.d.ts"
],
"directories": {},
"devDependencies": {
"ava": "^0.25.0",
"fs-sync": "^1.0.3",
"glob": "^7.1.1",
"nyc": "^12.0.2",
"pascal-case": "^2.0.0",
"typescript": "*",
"uglify-js": "^3.4.7",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
},
"version": "4.0.0",
"scripts": {
"start": "npm run watch",
"build": "tsc",
"bundle": "webpack",
"minify": "bin/minify",
"watch": "tsc -w & ava --watch",
"test": "tsc & nyc ava -v && nyc report --reporter=html"
},
"ava": {
"files": [
"test/**/*.js"
],
"source": [
"dist/**/*.js"
]
}
}