-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.42 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
{
"name": "nw-electron-adapter",
"version": "1.0.0",
"description": "An adapter for Electron's API inside NW.js",
"main": "index.js",
"scripts": {
"start": "nw ./package.nw",
"lint": "eslint --config=.eslintrc.js index.js src/**/*.js",
"fix": "eslint --fix --config=.eslintrc.js index.js src/**/*.js",
"unit": "npm test",
"test": "jest --coverage --runInBand",
"test-one": "cls & jest --coverage --runInBand -t \"test name\"",
"test-debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --no-cache --runInBand -t \"test name\"",
"validate": "npm run lint && npm test"
},
"ManifestComments": [
"Jest 25.1.0 is broken on Windows, Gitlab CI, ZSH, & IntelliJ Terminal. Pinning to 24.9.0 until Jest issue #9459 is resolved."
],
"dependencies": {
},
"devDependencies": {
"eslint": "^7.7.0",
"eslint-config-tjw-base": "^1.0.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsdoc": "^30.3.1",
"eslint-plugin-markdown": "^1.0.2",
"jest": "24.9.0",
"nw": "sdk"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nwutils/nw-electron-adapter.git"
},
"keywords": [
"NW.js",
"XPDA",
"Electron",
"API",
"Adapter"
],
"license": "MIT",
"author": "The Jared Wilcurt",
"bugs": {
"url": "https://github.com/nwutils/nw-electron-adapter/issues"
},
"homepage": "https://github.com/nwutils/nw-electron-adapter#readme"
}