forked from kinda/react-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"name": "react-loader",
"description": "React component that displays a spinner via spin.js until your component is loaded",
"version": "2.4.0",
"main": "lib/react-loader.js",
"scripts": {
"build": "./node_modules/.bin/jsx -x jsx lib lib",
"test-prepare": "./node_modules/.bin/browserify -e test/spec/suite.js -t reactify -o test/bundle.js",
"test-run": "./node_modules/.bin/mocha-phantomjs test/index.html",
"test": "npm run build && npm run test-prepare && npm run test-run"
},
"repository": {
"type": "git",
"url": "https://github.com/quickleft/react-loader"
},
"keywords": [
"react",
"component",
"react-component",
"loader",
"spinner",
"spin",
"spinjs",
"spin.js"
],
"author": {
"name": "Matt Huggins",
"email": "mhuggins@quickleft.com",
"url": "http://quickleft.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/quickleft/react-loader/issues"
},
"homepage": "https://github.com/quickleft/react-loader",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"dependencies": {
"spin.js": "2.x"
},
"devDependencies": {
"browserify": "^5.9.1",
"chai": "^1.9.1",
"es5-shim": "^4.0.1",
"mocha": "^2.4.5",
"mocha-phantomjs": "^4.0.2",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"react-tools": "^0.13.3",
"reactify": "^1.1.1"
}
}