-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.62 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
{
"name": "stars-rating-react",
"version": "1.0.0",
"description": "A react component for star rating system",
"main": "index.js",
"scripts": {
"start": "npm run watch && react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"scss-compile": "node-sass --output-style compressed ./src/index.scss -o ./src/style",
"watch": "npm run scss-compile",
"cover": "./node_modules/.bin/istanbul test ./node_modules/mocha/bin/_mocha -- --recursive -R spec",
"test": "SET NODE_ENV=development& nyc mocha --compilers js:babel-register --require ./test/helpers.js --require ./test/dom.js --recursive ./test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreeasimona/stars-rating-react.git"
},
"author": "simona.domnisoru",
"license": "MIT",
"bugs": {
"url": "https://github.com/andreeasimona/stars-rating-react/issues"
},
"homepage": "https://github.com/andreeasimona/stars-rating-react#readme",
"dependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"istanbul": "^0.4.5",
"mocha": "^5.0.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scripts": "1.1.0",
"scss-compile": "^0.1.7",
"sinon": "^4.3.0",
"sync-exec": "^0.6.2",
"uglifyjs-webpack-plugin": "^1.1.8",
"webpack": "^3.11.0"
},
"babel": {
"presets": [
"react-app"
],
"plugins": [
"transform-es2015-modules-commonjs"
]
},
"devDependencies": {
"istanbul": "^0.4.5",
"nyc": "^11.4.1"
}
}