forked from eugenijusr/react-nps-input
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.82 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
{
"name": "react-nps-input",
"version": "0.3.0",
"description": "React component to prompt the NPS score",
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"prepare": "rimraf ./lib && babel --out-dir ./lib ./src",
"prepublish": "rimraf ./lib && babel --out-dir ./lib ./src",
"test": "npm run lint",
"postpublish": "npm run deploy-example",
"build-example-js": "browserify ./example/main.js -o ./example/bundle.js -t [ babelify --presets [ es2015 react ] ]",
"build-example-css": "node-sass ./example/main.scss ./example/main.css",
"build-example": "npm run build-example-js; npm run build-example-css",
"serve-example": "live-server ./example/ --no-browser --port=8081",
"start": "npm run build-example && npm run serve-example",
"deploy-example": "npm run build-example && gh-pages -d ./example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SamyPesse/react-nps-score.git"
},
"author": "Samy Pesse <samy@gitbook.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SamyPesse/react-nps-score/issues"
},
"homepage": "https://github.com/SamyPesse/react-nps-score#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babelify": "^7.3.0",
"browserify": "^14.1.0",
"eslint": "3.15.0",
"eslint-config-gitbook": "1.5.0",
"gh-pages": "^0.12.0",
"http-server": "^0.9.0",
"live-server": "^1.2.0",
"mocha": "^3.2.0",
"node-sass": "^4.7.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2",
"yarn": "^1.3.2"
},
"dependencies": {
"classnames": "^2.2.5",
"create-react-class": "^15.6.3",
"prop-types": "^15.6.1"
}
}