-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.26 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
{
"name": "@curium.rocks/ncc-template",
"version": "0.1.0",
"description": "A template repository for a typescript project using vercel/ncc",
"main": "dist/index.js",
"scripts": {
"lint": "eslint --ext .ts src/ test/",
"lint:fix": "eslint --ext .ts src/ test/ --fix",
"dev": "ncc run src/index.ts",
"build": "ncc build src/index.ts -o dist",
"test": "jest --coverage --detectOpenHandles --testPathPattern='test/.*\\.spec\\.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/curium-rocks/ncc-template.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/curium-rocks/ncc-template/issues"
},
"homepage": "https://github.com/curium-rocks/ncc-template#readme",
"devDependencies": {
"@jest/globals": "^29.2.2",
"@types/jest": "^29.0.1",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.26.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.2.2",
"ts-jest": "^29.0.3",
"typescript": "^5.0.0"
}
}