-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
50 lines (50 loc) · 1.49 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-spin",
"version": "0.6.2",
"description": "A React component wrapper for spin.js",
"main": "lib/main.js",
"scripts": {
"test": "karma start --single-run --browsers Firefox",
"lint": "eslint src/",
"build": "rimraf lib && babel src --out-dir lib --ignore *.spec.js",
"prepublish": "npm run build"
},
"author": "Thomas Boyt",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thomasboyt/react-spin"
},
"devDependencies": {
"babel-cli": "^6.6.0",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-check-es2015-constants": "^6.7.2",
"babel-plugin-transform-es2015-block-scoping": "^6.7.1",
"babel-plugin-transform-es2015-function-name": "^6.5.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.0",
"babel-plugin-transform-es3-property-literals": "^6.5.0",
"babel-preset-react": "^6.5.0",
"eslint": "^1.10.3",
"eslint-plugin-react": "^4.1.0",
"expect": "^1.14.0",
"karma": "^0.13.21",
"karma-chrome-launcher": "^0.2.2",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^1.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"rimraf": "^2.5.2",
"webpack": "^1.12.14"
},
"dependencies": {
"spin.js": "^2.0.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-rc.1"
}
}