generated from MatrixAI/TypeScript-Demo-Lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.92 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
{
"name": "@matrixai/typescript-demo-lib",
"version": "1.2.0",
"bin": {
"typescript-demo-lib": "dist/bin/typescript-demo-lib.js"
},
"author": "Roger Qiu",
"description": "TypeScript Demo Library Project",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/MatrixAI/TypeScript-Demo-Lib.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"pkg": {
"assets": [
"node_modules/leveldown/**/*",
"node_modules/utp-native/**/*",
"node_modules/fd-lock/**/*"
],
"scripts": [
"dist/lib/workers/worker.js"
]
},
"scripts": {
"build": "rm -r ./dist || true; tsc -p ./tsconfig.build.json",
"ts-node": "ts-node -r tsconfig-paths/register",
"test": "jest",
"lint": "eslint '{src,tests}/**/*.{js,ts}'",
"lintfix": "eslint '{src,tests}/**/*.{js,ts}' --fix",
"docs": "rm -r ./docs || true; typedoc --gitRevision master --tsconfig ./tsconfig.build.json --out ./docs src && touch ./docs/.nojekyll",
"typescript-demo-lib": "ts-node -r tsconfig-paths/register --compiler typescript-cached-transpile --transpile-only src/bin/typescript-demo-lib.ts"
},
"dependencies": {
"fd-lock": "^1.2.0",
"level": "^7.0.0",
"threads": "^1.6.5",
"utp-native": "^2.5.3",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^27.2.5",
"jest-mock-process": "^1.4.0",
"node-gyp-build": "4.2.3",
"pkg": "5.3.0",
"prettier": "^2.2.1",
"ts-jest": "^27.0.5",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typedoc": "^0.21.5",
"typescript": "^4.1.3",
"typescript-cached-transpile": "0.0.6"
}
}