forked from derekpitt/fw-model
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.45 KB
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
{
"name": "fw-model",
"version": "1.1.1",
"description": "",
"main": "lib/cjs",
"scripts": {
"build": "npm run clean:build && tsc -p tsconfig.json && tsc -p tsconfig.cjs.json && npm run dts:bundle",
"dts:bundle": "dts-bundle-generator -o ./lib/index.d.ts --project tsconfig.json --no-banner src/index.ts",
"lint": "eslint \"{src,tests}/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:watch": "jest --watch",
"semantic-release": "semantic-release",
"clean:build": "rimraf lib",
"prepare": "husky"
},
"author": "",
"module": "lib/esm",
"license": "ISC",
"types": "./lib/index.d.ts",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"chai": "^3.5.0",
"del": "^2.2.1",
"dts-bundle-generator": "^9.0.0",
"eslint": "^8.38.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^9.0.7",
"istanbul": "^0.4.4",
"jest": "^29.5.0",
"mocha": "^3.0.2",
"semantic-release": "^23.0.0",
"ts-jest": "^29.1.0",
"tslib": "^2.2.0",
"typescript": "^5.0.4"
},
"dependencies": {
"reflect-metadata": "^0.2.1"
},
"peerDependencies": {
"reflect-metadata": "^0.2.1"
}
}