-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.41 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.41 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
51
52
53
{
"name": "@testyard/stats",
"version": "0.0.0-development",
"description": "Value stats tester.",
"author": "Richard King <richrdkng@gmail.com> (https://richrdkng.com)",
"license": "MIT",
"main": "index.js",
"homepage": "https://github.com/testyardjs/stats",
"repository": {
"type": "git",
"url": "https://github.com/testyardjs/stats.git"
},
"bugs": {
"url": "https://github.com/testyardjs/stats/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 16"
},
"ts-standard": {
"ignore": [
"dist"
]
},
"scripts": {
"start": "npm test -- --watchAll",
"lint": "ts-standard --verbose | snazzy",
"test": "jest",
"prep": "rm -rf dist && mkdir dist && cp LICENSE* README* package.json dist/",
"build": "rollup -c && tsc -p tsconfig.types.json"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node16": "^16.1.0",
"@types/jest": "^29.5.2",
"@types/semantic-release": "^20.0.1",
"jest": "^29.5.0",
"rollup": "^3.26.0",
"semantic-release": "^19.0.5",
"snazzy": "^9.0.0",
"string-dedent": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-standard": "^12.0.2",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
}
}