forked from beekai-oss/little-state-machine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2 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
{
"name": "little-state-machine",
"sideEffects": false,
"version": "3.0.3",
"main": "dist/little-state-machine.js",
"module": "dist/little-state-machine.es.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist/*",
"prebuild": "yarn clean",
"build": "yarn build:modern && yarn build:umd && yarn build:ie11 && yarn build:min",
"build:modern": "rollup -c ./rollup/rollup.config.js",
"build:umd": "rollup -c ./rollup/rollup.umd.config.js",
"build:min": "rollup -c ./rollup/rollup.min.config.js",
"build:ie11": "rollup -c ./rollup/rollup.ie11.config.js",
"watch": "tsc --watch",
"release": "npm version",
"postrelease": "yarn publish && git push --follow-tags",
"test": "jest",
"testw": "yarn test -- --watchAll",
"prepublish": "yarn run clean && yarn build"
},
"keywords": [
"state",
"flux"
],
"repository": "[email protected]:bluebill1049/little-state-machine.git",
"author": "<[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/runtime-corejs3": "^7.9.6",
"@rollup/plugin-babel": "^5.0.2",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-replace": "^2.3.2",
"@types/enzyme": "^3.9.0",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.17",
"@types/react": "^16.8.8",
"@types/react-test-renderer": "^16.8.1",
"coveralls": "^3.0.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"jest": "24.7.1",
"npm-run-all": "^4.1.5",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-test-renderer": "^16.8.3",
"rimraf": "^2.6.3",
"rollup": "^2.10.9",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.19.2",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333",
"uglify-es": "^3.3.9"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
}
}