forked from waitingsong/node-win32-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.29 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "win32-api",
"author": "waiting",
"version": "3.4.0",
"description": "FFI definitions of windows win32 api for node-ffi",
"keywords": [
"windows",
"win32",
"api",
"kernel32",
"user32",
"comctl32",
"ffi"
],
"engines": {
"node": ">=8.10.0"
},
"bin": {},
"browser": "",
"es2015": "./dist/index.esm.js",
"main": "./dist/index.cjs.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bugs": {
"url": "https://github.com/waitingsong/node-win32-api/issues"
},
"homepage": "https://github.com/waitingsong/node-win32-api#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/waitingsong/node-win32-api.git"
},
"license": "MIT",
"nyc": {
"exclude": [
"**/*.js",
"**/*.test.ts",
"**/*.d.ts"
],
"extension": [
".ts",
".tsx"
],
"reporter": [
"text-summary",
"html"
],
"all": true
},
"dependencies": {
"win32-def": "^2.3.0"
},
"devDependencies": {
"@types/ffi": "^0.1.0",
"@types/mocha": "^5.2.2",
"@types/node": "latest",
"@types/power-assert": "latest",
"@types/ref": "0.0.28",
"@types/ref-struct": "0.0.29",
"@types/rewire": "^2.5.28",
"@types/rimraf": "latest",
"@types/yargs": "latest",
"coveralls": "^3.0.0",
"eslint": "^5.0.1",
"ffi": "git+https://github.com/node-ffi/node-ffi.git",
"intelli-espower-loader": "^1.0.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mz-modules": "^2.1.0",
"nyc": "^12.0.2",
"power-assert": "latest",
"ref": "^1.3.5",
"ref-struct": "^1.1.0",
"rewire": "^4.0.0",
"rimraf": "latest",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0",
"source-map-support": "^0.5.6",
"ts-node": "latest",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "latest",
"yargs": "latest"
},
"peerDependencies": {
"ffi": "^2.2.0"
},
"scripts": {
"bp:add": "git remote add bp https://github.com/waitingsong/npm-base",
"bp:sync": "git fetch bp && git pull --no-edit bp master",
"build": "npm run clean && npm run lint && npm run lint:t && npm run tsc && npm run jslint && npm run rp",
"clean": "rm -rf dist/*",
"cov": "nyc mocha",
"cov:coveralls": "nyc mocha && nyc report --reporter=text-lcov | coveralls",
"jslint": "eslint --fix dist/**/*.js",
"lint": "tslint --fix -p tsconfig.json -t stylish",
"lint:t": "tslint --fix -p test/tsconfig.json -t stylish",
"prepublishOnly": "npm run build",
"repo:init": "git config --local push.followTags true && git config --local core.hooksPath ./.githooks && git config --local remote.origin.prune true && git config --local remote.origin.tagopt \"--tags\" && git config --local remote.pushdefault origin && echo It may going for a long time. Plese wait... && npm i && ts-node -P .githooks/tsconfig.json .githooks/init.ts",
"rp": "rollup -c rollup.config.js",
"rp:w": "npm run tsc:w | rollup -wc rollup.config.js",
"test": "mocha --opts test/mocha.opts",
"test:browser": "cd .config && npm run browser && cd ..",
"tsc": "tsc -p tsconfig.json",
"tsc:w": "tsc -p tsconfig.json -w"
},
"os": [
"win32"
]
}