-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.03 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
{
"private": true,
"author": "ORDBOK contributors",
"bugs": "https://github.com/ordbok/core/issues",
"description": "Dictionary system",
"homepage": "https://github.com/ordbok/core#readme",
"license": "MIT",
"main": "index.js",
"name": "@ordbok/core",
"repository": "https://github.com/ordbok/core.git",
"types": "index.d.ts",
"version": "0.2.3",
"bin": {
"ordbok-assembler": "bin/ordbok-assembler.js"
},
"devDependencies": {
"@ordbok/typedoc-theme": "~0.6.0",
"@types/node": "^14.10.0",
"browserify": "^17.0.0",
"husky": "^9.0.7",
"typescript": "~3.9.10",
"typescriptlibs.typedoc": "github:typescriptlibs/typescriptlibs.typedoc#v0.19.3"
},
"engines": {
"node": ">=14.10.0"
},
"files": [
"bin/",
"client/",
"es6/",
"lib/",
"plugins/",
"AUTHORS.md",
"CODE_OF_CONDUCT.md",
"index.d.ts",
"index.js",
"internals.d.ts",
"internals.js",
"LICENSE.md",
"README.md"
],
"keywords": [
"dictionary",
"ordbok"
],
"scripts": {
"build": "npm run clean && npm run build-1 && npm run build-2 && npm run build-3 && npm run build-4",
"build-1": "tsc --build sources/tsconfig/*.json",
"build-2": "chmod +x bin/ordbok-assembler.js",
"build-3": "browserify --outfile client/ordbok-core.js --standalone OrdbokCore index.js",
"build-4": "cd sources/tsconfig && tsl-typedoc --out ../../docs --tsconfig tsl-typedoc.json",
"clean": "rm -rf $(< .clean)",
"release": "npm publish --access=public --tag next",
"release-as-stable": "npm publish --access=public",
"test": "npm run tests",
"tests": "npm run tests-clean && npm run tests-build && npm run tests-clean",
"tests-build": "tsc --build tests && cd tests-build && node index.js",
"tests-clean": "rm -rf tests-build",
"watch": "tsc --build sources/tsconfig/*.json --watch"
}
}