forked from dozoisch/react-async-script
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.84 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.84 KB
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
63
64
65
66
{
"name": "react-async-script",
"version": "0.9.1",
"description": "A composition mixin for loading scripts asynchronously for React",
"main": "lib/async-script-loader.js",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"lint": "eslint ./",
"test": "karma start --single-run",
"test-watch": "karma start",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/dozoisch/react-async-script.git"
},
"keywords": [
"react",
"asynchronous",
"script-loader"
],
"author": "Hugo Dozois <hugo@dozoisch.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dozoisch/react-async-script/issues"
},
"homepage": "https://github.com/dozoisch/react-async-script",
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-core": "^6.0.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.23.0",
"babel-runtime": "^6.0.0",
"chai": "^3.5.0",
"es5-shim": "~4.1.3",
"eslint": "~1.6.0",
"eslint-config-defaults": "~7.0.1",
"eslint-plugin-react": "~3.5.1",
"karma": "~0.13.9",
"karma-chai": "~0.1.0",
"karma-chrome-launcher": "~0.2.0",
"karma-cli": "~0.1.0",
"karma-mocha": "~0.2.0",
"karma-mocha-reporter": "~1.1.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sourcemap-loader": "~0.3.5",
"karma-webpack": "~1.7.0",
"mocha": "~2.3.3",
"phantomjs": "^1.9.18",
"react": "^15.5.0",
"react-dom": "^15.5.0",
"webpack": "~1.14.0"
},
"peerDependencies": {
"babel-runtime": ">=5.8.0",
"react": ">=15.5.0"
},
"dependencies": {
"prop-types": ">=15.5.0"
}
}