-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "react-evil-icons",
"version": "0.4.0",
"description": "React components for Evil Icons",
"main": "lib/index.js",
"scripts": {
"clean": "rm -Rf ./lib",
"compile": "npm run clean && babel --experimental src --out-dir lib",
"watch": "babel --experimental src --watch --out-dir lib",
"test": "jest ./lib",
"start": "npm run compile && npm test",
"onchange": "onchange 'lib/*.js' 'lib/**/*.js' -- npm test",
"dev": "npm run watch & npm run onchange",
"prepublish": "npm ls && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/saulhoward/react-evil-icons.git"
},
"keywords": [
"react-component",
"evil-icons",
"icons",
"svg"
],
"license": "Apache 2",
"bugs": {
"url": "https://github.com/saulhoward/react-evil-icons/issues"
},
"homepage": "https://github.com/saulhoward/react-evil-icons",
"dependencies": {
"create-react-class": "^15.6.3",
"evil-icons": "^1.9.0",
"gulp": "^3.9.1",
"gulp-inject-string": "1.1.1",
"prop-types": "^15.6.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel": "^6.23.0",
"jest-cli": "^22.2.1",
"onchange": "3.3.0",
"react": ">=16.2.0"
},
"jest": {
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
}
}