This repository has been archived by the owner on Apr 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.87 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "kyucan",
"version": "0.1.0",
"description": "Qui, où, quand? Telle est la question",
"license": "AGPL-3.0",
"repository": "millette/kyucan",
"author": {
"name": "Robin Millette",
"email": "robin@millette.info",
"url": "http://robin.millette.info"
},
"engines": {
"node": ">= 10"
},
"bugs": {
"url": "https://github.com/millette/kyucan/issues"
},
"homepage": "https://github.com/millette/kyucan#readme",
"lint-staged": {
"*.{js,json,md,html,tag,scss}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"bulma": "^0.7.2",
"riot": "^3.13.2",
"riot-route": "^3.1.4"
},
"devDependencies": {
"gh-pages": "^2.1.1",
"husky": "^2.7.0",
"lint-staged": "^9.5.0",
"node-sass": "^4.13.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-purgecss": "^2.1.3",
"parcel-plugin-tag": "^1.2.0",
"parcel-plugin-txt": "^1.0.3",
"prettier": "^1.19.1"
},
"scripts": {
"build": "cp .git/`cat .git/HEAD|cut -b 6-` more/git-head.txt && parcel build --no-source-maps --detailed-report --experimental-scope-hoisting --public-url ./ index.html",
"clean": "rm -fr .cache dist",
"deploy": "npm run clean && npm run build && gh-pages -d dist",
"start": "CHOKIDAR_USEPOLLING=yes parcel index.html # workaround https://github.com/parcel-bundler/parcel/issues/1743#issuecomment-441278085"
},
"purgecss": {
"content": [
"*.html",
"tags/*.tag"
],
"whitelist": [
"is-active"
]
},
"sass": {
"includePaths": [
"./node_modules/bulma"
]
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"arrowParens": "always",
"overrides": [
{
"files": "tags/*.tag",
"options": {
"parser": "html"
}
}
]
}
}