-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.75 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
59
60
61
{
"name": "gen-statem",
"version": "1.3.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/venkatperi/statem",
"scripts": {
"pretest": "npm run build:src",
"test": "TS_NODE_COMPILER_OPTIONS='{\"noImplicitAny\":false}' mocha ",
"clean": "rm -rf dist",
"build:src": "tsc",
"build:umd": "webpack",
"docs:dev": "vuepress dev doc",
"docs:build": "vuepress build doc",
"build": "npm run build:src && npm run build:umd",
"prepare": "npm run clean && npm run build",
"lint": "tslint --project ."
},
"files": [
"/src",
"/dist"
],
"author": "Venkat Peri <venkatperi@gmail.com> (http://www.vperi.com/)",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.9.4",
"@types/object-inspect": "^1.4.0",
"@types/p-timeout": "^1.2.1",
"@types/route-parser": "^0.1.1",
"@types/uniqid": "^4.1.2",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.4",
"chai": "^4.1.2",
"chunkhash-replace-webpack-plugin": "0.0.24",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typedoc": "^0.12.0",
"typedoc-plugin-internal-external": "^1.0.10",
"typedoc-plugin-markdown": "^1.1.15",
"typescript": "^3.0.3",
"uglifyjs-webpack-plugin": "^2.0.1",
"vuepress": "^1.2.0",
"webpack": "^4.20.2",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"immutability-helper": "^2.8.1",
"ntimer": "^0.5.3",
"object-inspect": "^1.6.0",
"p-timeout": "^2.0.1",
"route-parser": "0.0.5",
"stablepriorityqueue": "^0.1.0",
"uniqid": "^5.0.3",
"wtlog": "^1.0.0"
}
}