-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.17 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
{
"name": "create-hyperapp",
"version": "0.4.0",
"description": "Create Hyperapps with no build configuration",
"bin": {
"create-hyperapp": "./bin/index.js"
},
"dependencies": {
"colorette": "=1.0.7",
"fs-extra": "=7.0.1"
},
"devDependencies": {
"cross-env": "=7.0.2"
},
"scripts": {
"clean": "npx --ignore-existing --quiet rimraf node_modules example",
"format": "npx prettier --write *.js bin/*.js template/src/**/*.{css,js}",
"format:check": "npx prettier --list-different *.js bin/*.js template/src/**/*.{css,js}",
"create": "npm i && node bin/index.js example",
"test": "npm run clean && npm run create && cd example && npm run build && cross-env CI=1 npm test",
"check": "npm run format:check && npm test",
"release": "node release"
},
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okwolf/create-hyperapp.git"
},
"author": "Wolfgang Wedemeyer <wolf@okwolf.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/okwolf/create-hyperapp/issues"
},
"homepage": "https://github.com/okwolf/create-hyperapp"
}