-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 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
{
"name": "parcel-hyperapp-starter",
"version": "1.0.0",
"description": "A starting point for tiny projects",
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/parcel src/index.html --out-dir=public",
"build": "rimraf public && ./node_modules/.bin/parcel build src/index.html --out-dir=public",
"lint": "prettier --write ./src/**/*.js",
"clean": "rimraf .cache node_modules && npm i"
},
"keywords": [
"fx",
"hyperapp",
"parcel",
"picostyle",
"prettier"
],
"repository": {
"type": "git",
"url": "https://github.com/brycedorn/parcel-hyperapp-starter"
},
"author": {
"name": "Bryce Dorn",
"email": "brycedorn@gmail.com",
"url": "http://www.bryce.io"
},
"license": {
"type": "MIT",
"url": "http://www.mit-license.org"
},
"license": "MIT",
"devDependencies": {
"@hyperapp/fx": "^0.7.0",
"hyperapp": "^1.2.6",
"parcel-bundler": "^1.9.0",
"picostyle": "^2.0.1",
"prettier": "^1.13.5",
"rimraf": "^2.6.2"
}
}