forked from hailocab/react-pure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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-pure",
"version": "0.3.0",
"description": "React components using Pure CSS",
"main": "lib/index.js",
"scripts": {
"clean": "rm -Rf ./lib",
"compile": "npm run clean && babel --stage 1 --optional runtime --out-dir lib src",
"watch": "babel --watch --stage 1 --optional runtime --out-dir lib src",
"test": "jest --coverage ./lib",
"start": "npm run compile && npm test",
"onchange": "onchange 'lib/*.js' 'lib/**/*.js' -- jest ./lib",
"dev": "npm run watch & npm run onchange",
"prepublish": "npm ls && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/hailocab/react-pure.git"
},
"keywords": [
"react-component",
"pure",
"css"
],
"license": "Apache 2",
"bugs": {
"url": "https://github.com/hailocab/react-pure/issues"
},
"homepage": "https://github.com/hailocab/react-pure",
"dependencies": {
"babel-runtime": "^5.1.9",
"classnames": "^1.1.4"
},
"peerDependencies": {
"react": "^0.13.0"
},
"devDependencies": {
"babel": "^5.1.9",
"jest-cli": "^0.4.0",
"onchange": "^1.1.0",
"react": "^0.13.0"
},
"jest": {
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/babel-runtime",
"<rootDir>/node_modules/classnames",
"<rootDir>/node_modules/react"
]
}
}