-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "spektral-utils-ts",
"version": "1.0.0-beta.8",
"description": "A TypeScript utility library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start:build": "tsc --watch",
"start:test": "jest --watchAll",
"start:format": "npx prettier --write .",
"start": "concurrently npm:start:*",
"prepare": "husky install",
"changelog": "npx standard-version",
"test": "jest",
"build": "tsc"
},
"files": ["dist"],
"repository": {
"type": "git",
"url": "git+https://github.com/spektraldevelopment/spektral-utils-ts.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/spektraldevelopment/spektral-utils-ts/issues"
},
"homepage": "https://github.com/spektraldevelopment/spektral-utils-ts#readme",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"concurrently": "^9.1.2",
"glob": "^9.3.5",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.1.9",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}