forked from LucasBassetti/react-css-loaders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·83 lines (83 loc) · 2.36 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
81
82
83
{
"name": "react-css-loaders",
"version": "0.0.2",
"description": "React CSS Loaders",
"main": "dist/react-css-loaders.min.js",
"scripts": {
"lint": "./node_modules/.bin/eslint lib/*.jsx",
"prepush": "npm run lint",
"start": "webpack-dev-server --inline --content-base build/",
"test": "./node_modules/.bin/mocha tests/helpers/setup.js tests/**/*.spec.js --require babel-register",
"test:watch": "npm test -- --watch",
"test:coverage": "nyc npm test",
"build": "webpack --config webpack.config.prod.js --output-filename react-css-loaders.js",
"build:prod": "webpack --config webpack.config.prod.js --output-filename react-css-loaders.min.js -p",
"build:all": "npm run build && npm run build:prod",
"prepublish": "npm run build:all",
"coveralls": "npm run test:coverage && nyc report --reporter=text-lcov | coveralls"
},
"files": [
"dist"
],
"nyc": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
],
"extension": [
".jsx"
]
},
"repository": {
"type": "git",
"url": "https://github.com/LucasBassetti/react-css-loaders"
},
"keywords": [
"react",
"css",
"loaders"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/LucasBassetti/react-css-loaders/issues"
},
"homepage": "https://github.com/LucasBassetti/react-css-loaders#readme",
"devDependencies": {
"babel-core": "^6.7.7",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "6.24.0",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.8",
"copy-webpack-plugin": "^2.1.1",
"coveralls": "^2.13.1",
"enzyme": "^2.8.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"file-loader": "^0.11.1",
"husky": "^0.13.3",
"jsdom": "^9.12.0",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"react-addons-test-utils": "^15.5.0",
"sinon": "^2.1.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1",
"write-file-webpack-plugin": "^4.0.0"
},
"dependencies": {
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"styled-components": "^1.4.6"
}
}