-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
80 lines (80 loc) · 2.44 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
72
73
74
75
76
77
78
79
80
{
"name": "react-duotone",
"version": "2.1.1",
"description": "React Duotone Component",
"main": "lib/main.js",
"files": [
"dist",
"lib"
],
"scripts": {
"build:umd": "webpack --devtool source-map --config webpack.build.js",
"build:umd:min": "cross-env MINIFY=1 webpack --devtool source-map --config webpack.build.js",
"build": "babel src/ --out-dir lib/ --ignore __tests__,__mocks__",
"bundle": "mkdir -p dist && npm run build:umd && npm run build:umd:min",
"type-check": "node_modules/.bin/flow",
"lint": "eslint src",
"prettier": "prettier --single-quote --jsx-bracket-same-line --trailing-comma all --print-width 80 --write \"src/**/*.js\"",
"test": "jest --coverage",
"start": "webpack-dev-server --inline --content-base examples/",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"yarn run prettier",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nagelflorian/react-duotone.git"
},
"keywords": [
"react",
"duotone",
"react-component"
],
"author": "Florian Nagel <[email protected]> (http://floriannagel.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nagelflorian/react-duotone/issues"
},
"homepage": "https://github.com/nagelflorian/react-duotone#readme",
"peerDependencies": {
"react": "^0.14.7 || ^15.0.0",
"react-dom": "^0.14.7 || ^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"cross-env": "^3.0.0",
"css-loader": "^5.2.4",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-prettier": "^2.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^6.10.0",
"file-loader": "^6.2.0",
"flow-bin": "^0.149.0",
"husky": "^0.13.3",
"jest": "^21.0.0",
"lint-staged": "^3.4.1",
"prettier": "^1.3.1",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"react-test-renderer": "^15.3.2",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^3.11.2"
}
}