-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.91 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
{
"name": "react-svg-bpm",
"version": "0.0.4",
"description": "React Svg Bpm Component",
"main": "dist/",
"scripts": {
"build": "npm run build:js && npm run build:css && npm run build:sound",
"build:js": "babel src --out-dir dist",
"build:css": "node-sass src/index.scss dist/index.css",
"build:sound": "cd src && copyfiles ./sounds/* ../dist && cd ..",
"clean": "rimraf dist",
"fenix": "rimraf node_modules && npm i -s",
"prestart": "cd src && copyfiles ./sounds/* ../public && cd ..",
"start": "parcel demo/index.html --out-dir public --open",
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruben-martin-lozano/reactsvgbpm.git"
},
"keywords": [],
"author": "Rubén Martín Lozano",
"license": "ISC",
"homepage": "https://github.com/ruben-martin-lozano/reactsvgbpm#readme",
"peerDependencies": {
"react": "0.14 || 15 || 16"
},
"eslintConfig": {
"extends": "./eslintrc.js"
},
"sasslintConfig": ".sass-lint.yml",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "8.2.2",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"copyfiles": "2.0.0",
"eslint-config-standard-react": "6.0.0",
"eslint-config-standard": "11.0.0",
"eslint-plugin-chai-friendly": "0.4.1",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-node": "6.0.0",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-react": "7.7.0",
"eslint-plugin-standard": "3.0.1",
"eslint": "4.18.1",
"node-sass": "4.7.2",
"normalize.css": "8.0.0",
"parcel-bundler": "1.7.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"rimraf": "2.6.2",
"sass-lint": "1.12.1"
},
"dependencies": {
"classnames": "2.2.5"
}
}