-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.89 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
58
59
60
61
62
63
64
65
66
67
{
"private": true,
"workspaces": [
"packages/**"
],
"name": "siu",
"version": "1.0.0-beta.13",
"main": "dist/index.js",
"module": "dist/index.js",
"author": "buns <[email protected]>",
"license": "MIT",
"bin": {
"siu": "./bin/siu.js"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=14.x"
},
"scripts": {
"preinstall": "node ./scripts/checkYarn.js",
"test": "node ./scripts/test.mjs",
"test:debug": "cross-env DEBUG=siu* node ./scripts/test.mjs",
"clean:dist": "rimraf -g packages/*/dist",
"clean:dts": "rimraf -g packages/*/dist/{tsconfig.tsbuildinfo,dts} && rimraf -g packages/*/temp",
"dts": "node ./scripts/dts.js && npm run clean:dts",
"compile": "rollup -wc",
"build": "npm run clean:dist && rollup -c && npm run dts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "rollup -c && node scripts/release.js"
},
"devDependencies": {
"@microsoft/api-extractor": "7.13.0",
"@rollup/plugin-commonjs": "17.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "11.1.0",
"@rollup/pluginutils": "4.1.0",
"@types/jest": "26.0.20",
"@types/node": "14.14.21",
"@types/rimraf": "3.0.0",
"@types/shelljs": "0.8.8",
"@typescript-eslint/eslint-plugin": "4.13.0",
"@typescript-eslint/parser": "4.13.0",
"conventional-changelog-cli": "2.1.1",
"cross-env": "7.0.3",
"esbuild": "0.8.32",
"eslint": "7.18.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-prettier": "3.3.1",
"execa": "5.0.0",
"minimist": "1.2.5",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"rollup": "2.36.2",
"rollup-plugin-node-externals": "2.2.0",
"semver": "7.3.4",
"shelljs": "0.8.4",
"typescript": "4.1.3"
},
"dependencies": {
"jest": "26.6.3",
"ts-jest": "26.4.4",
"validate-npm-package-name": "3.0.0"
}
}