-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.77 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
55
56
57
58
59
{
"name": "react-url",
"version": "1.0.1",
"description": "URL resolver for React.js, like the Django url templatetag",
"main": "build/index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint lib/index.js",
"prebuild": "npm run lint",
"build": "babel lib --out-dir build",
"pretest": "npm run build",
"test": "babel-node test/index.js | tap-spec",
"prepublish": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PlatziDev/react-url.git"
},
"keywords": [
"react",
"url",
"resolver",
"decorator"
],
"author": "Sergio Daniel Xalambrí <[email protected]> (http://sergio.xalambri.com.ar/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/PlatziDev/react-url/issues"
},
"homepage": "https://github.com/PlatziDev/react-url#readme",
"devDependencies": {
"babel": "6.5.2",
"babel-cli": "6.7.5",
"babel-core": "6.7.6",
"babel-eslint": "6.0.2",
"babel-plugin-transform-class-properties": "6.6.0",
"babel-plugin-transform-es2015-arrow-functions": "6.5.2",
"babel-plugin-transform-es2015-classes": "6.6.5",
"babel-plugin-transform-es2015-modules-commonjs": "6.7.4",
"babel-plugin-transform-es2015-parameters": "6.7.0",
"babel-plugin-transform-es2015-spread": "6.6.5",
"babel-plugin-transform-object-assign": "6.5.0",
"babel-plugin-transform-react-constant-elements": "6.5.0",
"babel-plugin-transform-react-inline-elements": "6.6.5",
"cheerio": "0.20.0",
"eslint": "2.8.0",
"eslint-config-airbnb": "7.0.0",
"eslint-plugin-jsx-a11y": "0.6.2",
"eslint-plugin-react": "4.3.0",
"react-dom": "15.0.1",
"tap-spec": "4.1.1",
"tape": "4.5.1"
},
"dependencies": {
"react": "^15.0.0"
}
}