-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.92 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
{
"name": "granular",
"description": "react granular synthesis engine",
"version": "0.1.6",
"homepage": "https://ruebel.github.io/granular",
"main": "lib/index.js",
"author": "Randy Uebel <[email protected]> (http://randyuebel.com/)",
"repository": "https://github.com/ruebel/granular",
"license": "MIT",
"scripts": {
"build": "npn run build:src",
"build:all": "run-s build:src build:docs",
"build:src": "babel ./src -d ./lib",
"build:docs": "cd ./examples && npm run build",
"copy:docs": "cpx \"./examples/build/**/*\" \"./docs\" -C",
"feedexamples": "cpx ./src/**/* ./examples/src/lib -u",
"feedexamples:watch": "npm run feedexamples -- -w",
"install:all": "yarn install && cd ./examples && yarn install",
"install:examples": "cd ./examples && yarn install",
"lint": "esw -f simple-detail --color src",
"lint:watch": "npm run lint -- --watch",
"prebuild:docs": "npm run feedexamples",
"postbuild:docs": "run-s copy:docs",
"start": "run-p feedexamples:watch start:examples",
"start:examples": "cd ./examples && npm run start"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browser": true
}
}
],
"stage-2"
]
},
"eslintConfig": {
"extends": "gsandf-react",
"parser": "babel-eslint"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^8.0.1",
"babel-preset-env": "^1.2.1",
"babel-preset-stage-2": "^6.18.0",
"babel-watch": "^2.0.5",
"cpx": "^1.5.0",
"eslint": "^4.6.1",
"eslint-config-gsandf-react": "^0.2.0",
"eslint-watch": "^3.1.2",
"npm-run-all": "^4.1.1",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}