-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
34 lines (34 loc) · 974 Bytes
/
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
{
"name": "extensions-main",
"repositoryName": "ACK72's Extensions",
"version": "1.3.6",
"description": "ACK72's Paperback extension repository",
"main": "index.js",
"scripts": {
"start": "tsc && node dist/api.js",
"build": "tsc",
"test": "node_modules/.bin/mocha --timeout 300000 -r ts-node/register src/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test",
"bundle": "paperback bundle",
"serve": "paperback serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ACK72/kavya-paperback.git"
},
"author": "ACK72",
"license": "BSD-2-Clause",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^7.32.0",
"eslint-plugin-modules-newline": "^0.0.6",
"mocha": "^10.4.0",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@paperback/toolchain": "^0.8.0-alpha.47",
"@paperback/types": "^0.8.0-alpha.47"
}
}