-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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-load-script",
"version": "0.0.6",
"description": "react-load-script enables you to easily create components which depend on third party JS scripts",
"main": "lib/index.js",
"author": "Blueberry",
"repository": {
"type": "git",
"url": "https://github.com/blueberryapps/react-load-script.git"
},
"scripts": {
"build": "npm run build:lib",
"build:lib": "babel src --out-dir lib",
"clean": "rimraf lib",
"lint": "eslint ./src/*",
"test": "jest",
"prepublish": "yarn lint && yarn test && yarn build"
},
"keywords": [
"react",
"script"
],
"jest": {
"rootDir": "src"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-plugin-add-module-exports": "0.1.2",
"babel-plugin-transform-runtime": "6.6.0",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-1": "6.24.1",
"enzyme": "2.8.2",
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.3",
"jest": "19.0.2",
"prop-types": "15.5.8",
"react": "15.5.4",
"react-addons-test-utils": "15.5.1",
"react-dom": "15.5.4",
"rimraf": "2.4.3"
},
"dependencies": {},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=0.14.9"
}
}