-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.03 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
76
{
"name": "triangles",
"description": "Renders a chess board using React",
"version": "1.1.1",
"keywords": [
"chess",
"board",
"react",
"react-component"
],
"main": "lib/react-chess.js",
"unpkg": "umd/react-chess.js",
"scripts": {
"start": "react-scripts start",
"build": "npm run clean && npm run compile && NODE_ENV=production webpack -p && react-scripts build",
"clean": "rimraf build/ lib/ coverage/ umd/*.js",
"compile": "babel --copy-files -d lib/ src/",
"deploy": "gh-pages-deploy",
"posttest": "eslint .",
"prepublishOnly": "npm run qa",
"qa": "npm test && npm run build",
"test": "jest --coverage",
"watch": "babel --watch --copy-files -d lib/ src/"
},
"repository": {
"type": "git",
"url": "[email protected]:rexxars/react-chess.git"
},
"homepage": "https://rexxars.github.io/react-chess/",
"author": "Espen Hovlandsdal <[email protected]>",
"license": "MIT",
"gh-pages-deploy": {
"noprompt": true,
"prep": [
"build"
],
"staticpath": "build"
},
"dependencies": {
"prop-types": "^15.6.0",
"react-draggable": "^3.0.3",
"react-resize-aware": "^2.7.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.12.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-sanity": "^3.1.0",
"eslint-plugin-react": "^7.4.0",
"gh-pages-deploy": "^0.4.2",
"jest": "^21.2.1",
"prettier": "^1.8.2",
"react": "^16.1.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.1.0",
"react-scripts": "^1.0.17",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.6.2",
"webpack": "^3.8.1"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"src/**.js"
]
}
}