-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "react-transform-noop",
"version": "1.0.1",
"description": "React Transform that does nothing",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib",
"compile": "babel src -d lib",
"lint": "eslint src test",
"prepublish": "npm run clean && npm run compile",
"test": "mocha --require babel-core/register"
},
"keywords": [
"react-transform",
"example"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pwmckenna/react-transform-noop.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pwmckenna/react-transform-noop/issues"
},
"homepage": "https://github.com/pwmckenna/react-transform-noop#readme",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-plugin-react-transform": "^2.0.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"eslint-plugin-react": "^3.16.1",
"mocha": "^2.4.5",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"rimraf": "^2.5.1"
}
}