-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
{
"name": "@benglynn/press",
"version": "1.2.2",
"engines": {
"node": ">=12.16.3"
},
"description": "Joyful static site publishing",
"main": "dist/api.js",
"types": "dist/api.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"safepublish": "safepublish",
"build": "rm -r ./dist/* & tsc",
"lint": "eslint src",
"test": "npx mocha --require ts-node/register --extensions ts,tsx --watch-files src,test 'test/**/*.{ts,tsx}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benglynn/press.git"
},
"keywords": [
"typescript",
"press"
],
"author": "Ben Glynn",
"license": "MIT",
"bugs": {
"url": "https://github.com/benglynn/press/issues"
},
"homepage": "https://github.com/benglynn/press#readme",
"dependencies": {
"html-minifier": "^4.0.0",
"js-yaml": "^3.14.0",
"pug": "^3.0.0",
"showdown": "^1.9.1",
"prismjs": "^1.20.0"
},
"devDependencies": {
"@benglynn/publish": "^1.0.6",
"@types/chai": "^4.2.11",
"@types/html-minifier": "^4.0.0",
"@types/js-yaml": "^3.12.5",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.21",
"@types/prismjs": "^1.16.1",
"@types/pug": "^2.0.4",
"@types/showdown": "^1.9.3",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"chai": "^4.2.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
}
}