-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.42 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
{
"name": "@microstates/react",
"version": "0.12.0",
"description": "Provides useType hook",
"scripts": {
"build": "rollup --config",
"prepare": "npm run build",
"pretest": "npm run build",
"test": "jest",
"start": "npm test -- --watch"
},
"main": "dist/@microstates/react.umd.js",
"module": "dist/@microstates/react.js",
"browser": "dist/@microstates/react.umd.js",
"files": [
"dist",
"use-type.js",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/microstates/react.git"
},
"keywords": [
"react",
"microstates",
"state-management",
"statecharts",
"finite-state-machine"
],
"author": "Taras Mankovski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/microstates/react/issues"
},
"homepage": "https://github.com/microstates/react#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "7.0.0",
"@bigtest/interactor": "^0.9.1",
"@bigtest/react": "^0.1.2",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.6.0",
"jest": "23.6.0",
"microstates": "^0.13.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rollup": "1.2.0",
"rollup-plugin-babel": "^4.0.3"
},
"peerDependencies": {
"microstates": "^0.12.0",
"react": "^16.8.0"
},
"jest": {
"testRegex": "(\\.test)\\.js$"
}
}