-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 887 Bytes
/
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
{
"name": "granular-js-demo",
"version": "0.1.0",
"description": "A granular-js example",
"main": "index.js",
"scripts": {
"all": "npm run assets && npm run build && npm run deploy",
"start": "parcel src/index.html --no-cache --no-hmr --open",
"build": "parcel build src/index.html --no-cache --public-url ./",
"assets": "cp -r assets/* dist",
"deploy": "gh-pages -d dist"
},
"browserslist": [
"last 1 Chrome version",
"Firefox ESR",
"last 1 safari version",
"last 1 opera version",
"last 1 edge version"
],
"author": "Philipp Fromme",
"license": "MIT",
"dependencies": {
"granular-js": "^0.6.0",
"lodash": "^4.17.11",
"p5": "^0.7.2",
"simplex-noise": "^2.4.0"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"cssnano": "^4.1.7",
"gh-pages": "^2.0.1"
}
}