-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "twine-utils",
"version": "3.1.0",
"engines": {
"node": ">= 16.0.0"
},
"description": "Utilities for working with Twine 2 stories and story formats.",
"author": "Chris Klimas <chris@twinery.org>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/klembot/twine-utils"
},
"files": [
"dist/**"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"scripts": {
"build": "tsc && tsc --project tsconfig.cjs.json",
"lint": "eslint src/**/*.ts; exit 0",
"lint:noisy": "eslint src/**/*.ts",
"prepublishOnly": "run-s lint:noisy test build",
"test": "jest",
"test:watch": "jest --watch",
"typedoc": "typedoc"
},
"dependencies": {
"html-entities": "^2.4.0",
"node-html-parser": "^6.1.5",
"pickleparser": "^0.1.0",
"platform-folders": "^0.6.0"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"jest": "^29.6.1",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.1.1",
"typedoc": "^0.24.8",
"typedoc-plugin-missing-exports": "^2.0.0",
"typescript": "^5.1.6"
}
}