forked from selvagsz/react-async-button
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.87 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "react-async-button",
"version": "0.0.7",
"description": "React button component for handling async actions ",
"main": "lib/main.js",
"scripts": {
"clean": "rm -rf lib",
"example:build": "rm -f docs/*.dist.js && webpack",
"build:commonjs": "babel src/ --out-dir lib/ --ignore __tests__,__mocks__",
"build": "npm run clean && npm run build:commonjs && npm run example:build",
"lint": "eslint src",
"test": "npm run lint && jest",
"prepublish": "npm test && npm run build"
},
"files": [
"lib"
],
"keywords": [
"react",
"async-button",
"react-component"
],
"repository": "https://github.com/selvagsz/react-async-button",
"bugs": {
"url": "https://github.com/selvagsz/react-async-button/issues"
},
"author": "selvagsz",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-jest": "^13.0.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-1": "^6.5.0",
"css-loader": "^0.25.0",
"enzyme": "^2.3.0",
"eslint": "^2.13.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"jest-cli": "^13.1.0",
"react": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.1.0",
"react-fa": "^4.1.2",
"react-highlight": "^0.9.0",
"sinon": "^1.17.4",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"classnames": "^2.2.5"
},
"jest": {
"automock": false,
"testPathDirs": [
"src"
],
"unmockedModulePathPatterns": [
"node_modules",
"babel"
]
}
}