-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.23 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.23 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "react-async-button",
"version": "0.2.0",
"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",
"test": "jest",
"prepublish": "npm test && npm run build",
"precommit": "lint-staged",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"lint-staged": {
"src/**/*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
],
"docs/app.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"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-jest": "^20.0.3",
"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",
"coveralls": "^2.13.1",
"css-loader": "^0.25.0",
"enzyme": "^2.3.0",
"husky": "^0.14.1",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"lint-staged": "^4.0.0",
"prettier": "^1.4.4",
"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",
"react-test-renderer": "^15.6.1",
"sinon": "^1.17.4",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"prop-types": "^15.5.10"
},
"jest": {
"automock": false,
"verbose": true,
"collectCoverage": true,
"coverageReporters": [
"html",
"text"
],
"roots": [
"src"
],
"unmockedModulePathPatterns": [
"node_modules",
"babel"
]
}
}