-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.59 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
{
"name": "react-jax",
"version": "1.1.0",
"description": "A tiny decorator to manage AJAX requests in React components.",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"lint": "eslint src",
"pretest": "npm run lint",
"test": "mocha test",
"prepublish": "in-publish && npm run test && npm run build || not-in-publish",
"publish:major": "npm version major && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:patch": "npm version patch && npm publish",
"postpublish": "git push origin master --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/azuqua/react-jax"
},
"bugs": {
"url": "http://github.com/azuqua/react-jax/issues"
},
"keywords": [],
"author": {
"name": "Nicholas Clawson",
"email": "[email protected]",
"url": "nickclaw.com"
},
"license": "MIT",
"dependencies": {
"hoist-non-react-statics": "^2.0.0",
"lodash": "^4.15.0",
"react-display-name": "^0.2.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^4.1.8",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-1": "^6.13.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"eslint-plugin-react": "^3.16.1",
"in-publish": "^2.0.0",
"jsdom": "^3.1.2",
"mocha": "^2.3.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"superagent": "^3.5.2"
}
}