This repository has been archived by the owner on Jun 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.52 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
{
"name": "star-rating-react",
"version": "0.0.1",
"description": "A React star rating component.",
"repository": "joegesualdo/star-rating-react",
"main": "./dist/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "node .webpack/webpackBuild.js",
"dev-server": "node .webpack/webpackDevServer.js",
"test":
"CONFIG=$(pwd)/.webpack/webpack.config.test.js BABEL_DISABLE_CACHE=1 NODE_ENV=test node_modules/mocha/bin/mocha --compilers js:babel-register --require babel-register __tests__/helpers/browser.js __tests__/**/*.spec.js",
"watch-test":
"CONFIG=$(pwd)/.webpack/webpack.config.test.js BABEL_DISABLE_CACHE=1 NODE_ENV=test node_modules/mocha/bin/mocha -w --compilers js:babel-register --require babel-register __tests__/helpers/browser.js __tests__/**/*.spec.js"
},
"keywords": ["star", "rating", "review"],
"author": {
"name": "Joe Gesualdo",
"email": "[email protected]",
"url": ""
},
"license": "MIT",
"devDependencies": {
"ava": "^0.15.2",
"babel-loader": "^6.2.4",
"css-loader": "^0.23.1",
"chai": "^3.5.0",
"autoprefixer": "^6.3.6",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-plugin-webpack-loaders": "^0.4.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.8.0",
"classnames": "^2.2.5",
"enzyme": "^2.4.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-formatter-pretty": "^0.2.2",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"faucet": "0.0.1",
"jsdom": "^9.6.0",
"mocha": "^3.1.0",
"node-sass": "^3.7.0",
"postcss-cli": "^2.5.2",
"postcss-color-function": "^2.0.1",
"postcss-cssnext": "^2.5.2",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.9.1",
"postcss-modules": "^0.4.1",
"postcss-url": "^5.1.2",
"precss": "^1.4.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-addons-test-utils": "^15.1.0",
"rimraf": "^2.5.1",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"stylelint": "^6.5.1",
"stylelint-config-standard": "^7.0.0",
"stylelint-loader": "^6.0.0",
"stylelint-webpack-plugin": "^0.2.0",
"webpack": "^3.4.0",
"webpack-dev-server": "^3.1.11",
"xhr2": "^0.1.3"
},
"dependencies": {
"classnames": "^2.2.5",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"sinon": "^1.17.6"
}
}