-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 1.18 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
{
"name": "contour-lines",
"version": "1.0.0",
"description": "",
"main": "src/index.html",
"scripts": {
"start": "cross-env NODE_ENV=development parcel src/index.html --open",
"build": "cross-env NODE_ENV=production parcel build src/index.html --public-url ./ && npm run -s move",
"move": "mv dist/contour-lines.html dist/index.html && cp ./contour-lines.png dist/contour-lines.png",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arthurxavierx/contour-lines.git"
},
"keywords": [],
"author": "Arthur Xavier <[email protected]> (http://arthur-xavier.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/arthurxavierx/contour-lines/issues"
},
"homepage": "https://github.com/arthurxavierx/contour-lines#readme",
"devDependencies": {
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.3",
"gh-pages": "^1.1.0",
"parcel-bundler": "^1.5.1"
},
"engines": {
"node": ">= 8.0.0"
}
}