-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.68 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@stevenleep/comparison",
"version": "1.2.1",
"description": "A version of the verification tool",
"keywords": [
"version"
],
"license": "MIT",
"files": [
"lib/**/*"
],
"main": "lib/index.js",
"module": "lib/index.esm.js",
"commonjs": "lib/index.cjs.js",
"types": "lib/index.d.ts",
"scripts": {
"pre:run": "npx only-allow pnpm && cp .npmrc.bak .npmrc",
"build:lib": "rollup -c",
"build": "rollup -c",
"jest": "jest",
"jest:watch": "jest --watch",
"doc": "pnpm doc:pj && pnpm doc:test",
"doc:pj": "typedoc --options typedoc.json",
"doc:test": "typedoc --options typedoc.test.json",
"version": "pnpm version --no-git-tag-version",
"set:token": "sh ./scripts/token.sh",
"publish:pkg": "pnpm build && pnpm doc && sh ./scripts/release.sh"
},
"author": {
"name": "stevenleep",
"email": "[email protected]",
"url": "https://www.github.com/stevenleep"
},
"homepage": "stevenleep.github.io/comparison",
"repository": "https://github.com/stevenleep/comparison",
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.8",
"@types/node": "^18.7.13",
"jest": "^29.0.0",
"rollup": "^2.78.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.33.0",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typedoc": "^0.23.11",
"typescript": "^4.8.2"
}
}