-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.77 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
{
"name": "hyperpug",
"version": "1.5.3",
"license": "MIT",
"files": [
"lib",
"src",
"tsconfig.json"
],
"description": "Pug for browser, based on Hyperscript",
"main": "lib/index.js",
"unpkg": "lib/index.umd.js",
"types": "lib/index.d.ts",
"author": {
"name": "Pacharapol Withayasakpunt",
"email": "patarapolw@gmail.com",
"url": "https://www.polv.cc"
},
"repository": "github:patarapolw/hyperpug",
"keywords": [
"pug",
"hyperpug",
"hyperscript"
],
"scripts": {
"prebuild": "yarn lint && yarn test",
"build": "tsc -p src/tsconfig.json",
"browserify": "parcel build -d lib -o index.umd.js ./browser.ts",
"test": "ts-mocha --paths -p tests/tsconfig.json tests/**/*.spec.ts",
"web": "parcel web/index.html",
"predeploy": "parcel build web/index.html",
"deploy": "netlify deploy -d dist",
"prepack": "yarn build && yarn browserify",
"lint": "eslint '**'"
},
"devDependencies": {
"@types/codemirror": "^0.0.84",
"@types/js-yaml": "^3.12.1",
"@types/markdown-it": "^10.0.1",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.6",
"@types/prismjs": "^1.16.1",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"eslint": ">=6.2.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": ">=2.18.0",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-node": ">=9.1.0",
"eslint-plugin-promise": ">=4.2.1",
"eslint-plugin-standard": ">=4.0.0",
"js-yaml": "^3.13.1",
"mocha": "^6.0.0",
"parcel-bundler": "^1.12.4",
"ts-mocha": "^6.0.0",
"typescript": "^3.9.5"
},
"resolutions": {
"lodash": "^4.17.19"
},
"engines": {
"node": "12",
"yarn": "1.x",
"npm": "please-use-yarn"
}
}