forked from waitingsong/node-win32-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.54 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "win32-api",
"version": "1.0.0",
"description": "FFI definitions of windows win32 api for node-ffi",
"private": true,
"devDependencies": {
"@commitlint/cli": "8",
"@commitlint/config-conventional": "8",
"@rollup/plugin-commonjs": "13",
"@rollup/plugin-node-resolve": "8",
"@types/mocha": "7",
"@types/node": "14",
"@types/power-assert": "1",
"@types/rewire": "2",
"@types/rimraf": "3",
"@types/yargs": "15",
"@waiting/eslint-config": "^7.1.0",
"coveralls": "3",
"debug": "^4.1.0",
"eslint": "^8.9.0",
"espower-typescript": "9",
"intelli-espower-loader": "1",
"lerna": "3",
"mocha": "7",
"mocha-lcov-reporter": "1",
"nyc": "15",
"power-assert": "1",
"rewire": "5",
"rimraf": "3",
"rollup": "2",
"rollup-plugin-terser": "6",
"rxrunscript": "5",
"ts-node": "8",
"typescript": "3",
"yargs": "15"
},
"engines": {
"node": ">=10.16.0"
},
"scripts": {
"bp:add": "git remote add bp https://github.com/waitingsong/npm-mono-base",
"bp:sync": "git fetch --all -v && git merge bp/master -m \"Merge remote-tracking branch 'bp/master'\"",
"bootstrap": "lerna bootstrap --loglevel notice",
"build": "sh .scripts/build.sh",
"ci": "npm run build && npm run cov",
"clean": "lerna clean --loglevel error --yes && lerna run clean && npm run clean:lock && npm run clean:cache",
"clean:cache": "rm packages/*/.eslintcache -f",
"clean:lock": "rm packages/*/package-lock.json -f",
"cov": "lerna run cov --concurrency=1",
"doc": "node .githooks/doc.js",
"lint": "lerna run lint --parallel",
"lint:nofix": "lerna run lint:nofix --parallel",
"pub": "sh .scripts/publish.sh --create-release github",
"pub:canary": "sh .scripts/publish.sh --canary",
"pub:beta": "sh .scripts/publish.sh --dist-tag beta --force-publish=*",
"pub:next": "sh .scripts/publish.sh --dist-tag next",
"purge": "npm run clean && rm node_modules -rf",
"repo:init": "sh .githooks/init-repo.sh",
"reset": "npm run purge && npm i && npm run ci",
"test": "lerna run test"
},
"nyc": {
"include": [
"packages/*/src/*.ts",
"packages/*/src/**/*.ts"
],
"exclude": [
".githooks",
"node_modules*",
"**/src/bin",
"**/src/domain.ts",
"**/src/interface.ts",
"**/dist",
"**/node_modules*",
"**/test",
"**/test*",
"**/*.d.ts",
"**/*.js"
],
"extension": [
".ts"
],
"reporter": [
"json",
"html"
],
"all": true
}
}