-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.29 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@corey.burrows/statechart",
"version": "0.3.0",
"description": "Simple Stateless Statechart",
"main": "build/umd/index.js",
"module": "build/es/index.js",
"types": "build/types/index.d.ts",
"files": [
"build/types/Machine.d.ts",
"build/types/Node.d.ts",
"build/types/State.d.ts",
"build/types/Statechart.d.ts",
"build/types/index.d.ts",
"build/types/types.d.ts",
"build/es/Machine.js",
"build/es/Node.js",
"build/es/State.js",
"build/es/Statechart.js",
"build/es/index.js",
"build/es/types.js",
"build/umd/Machine.js",
"build/umd/Node.js",
"build/umd/State.js",
"build/umd/Statechart.js",
"build/umd/index.js",
"build/umd/types.js"
],
"devDependencies": {
"@corey.burrows/react-use-statechart": "^0.1.1",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.179",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.22",
"@types/redux": "^3.6.0",
"jest": "^27.5.0",
"lodash": "^4.17.21",
"parcel": "^2.3.2",
"prettier": "^3.2.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typedoc": "^0.22.13",
"typedoc-plugin-markdown": "^3.11.14",
"typescript": "^4.5.5"
},
"scripts": {
"test": "npx jest",
"build": "npx tsc && npx tsc -p ./tsconfig.umd.json",
"clean": "rm -rf ./build",
"docs": "rm -rf ./docs && npx typedoc --plugin typedoc-plugin-markdown --out docs --readme none --excludePrivate --excludeInternal src/index.ts",
"examples": "npx parcel --dist-dir .parcel examples/index.html",
"prepare": "npm run clean && npm t && npm run build",
"postpublish": "git tag v$(npm --loglevel silent run version) && git push --tags",
"version": "node -pe \"require('./package.json').version\"",
"prettier": "prettier --check \"src/*.ts\"",
"prettier:write": "prettier --check \"src/*.ts\" --write"
},
"keywords": [
"statechart",
"state",
"chart",
"statemachine",
"machine",
"harel",
"fsm"
],
"author": "Corey Burrows <[email protected]>",
"license": "MIT",
"repository": "https://github.com/burrows/statechart",
"homepage": "https://github.com/burrows/statechart"
}