-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.49 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.49 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
{
"name": "xtate",
"version": "3.0.0",
"description": "Simple State Managment library for React",
"main": "lib/xtate.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "webpack --env dev && webpack --env build && npm run test",
"dev": "webpack --progress --colors --watch --env dev",
"test": "jest",
"test:watch": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/GabrielBB/xtate.git"
},
"keywords": [
"xtate",
"state-managment",
"react",
"redux"
],
"author": "Gabriel Basilio Brito",
"bugs": {
"url": "https://github.com/GabrielBB/xtate/issues"
},
"homepage": "https://github.com/GabrielBB/xtate",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.4.3",
"react": "^16.2.0",
"react-dom": "^16.3.0",
"react-test-renderer": "^16.3.0",
"webpack": "^3.10.0",
"yargs": "^10.0.3"
},
"dependencies": {
"fbemitter": "^2.1.1",
"prop-types": "^15.6.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0"
}
}