-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.65 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
{
"name": "react-pulse",
"version": "1.0.3",
"description": "A button that when clicked sends an incremental 'pulse' to a function",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --watch",
"build": "webpack -p"
},
"author": "Peter Joseph",
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-object-rest-spread",
"transform-react-jsx",
"transform-class-properties"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterjoseph/react-pulse.git"
},
"keywords": [
"button",
"pause",
"pulse"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/peterjoseph/react-pulse/issues"
},
"homepage": "https://github.com/peterjoseph/react-pulse#readme",
"dependencies": {
"css-loader": "^0.28.9",
"file-loader": "^1.1.6",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"style-loader": "^0.20.1",
"webpack": "^3.11.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"eslint": "^4.17.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-class-property": "^1.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"prettier-eslint": "^8.8.1"
}
}