-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "prototype-controls",
"version": "0.0.4",
"description": "Control aspects of your prototype within the prototype itself.",
"main": "dist/lib.bundle.js",
"scripts": {
"test": "jest",
"start": "webpack-dev-server",
"build-lib": "webpack --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonathanconway/prototype-controls.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jonathanconway/prototype-controls/issues"
},
"homepage": "https://github.com/jonathanconway/prototype-controls#readme",
"devDependencies": {
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.9.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^20.0.4",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
"transform-class-properties",
"transform-runtime"
]
},
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"jest": {
"testEnvironment": "jsdom"
}
}