forked from michalzaq12/xpda-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.7 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
{
"name": "xpda-dev",
"version": "0.1.0",
"description": "Cross platform desktop app development tools",
"main": "lib/index.js",
"scripts": {
"test": "lerna run test",
"test:coverage": "rimraf ./.nyc_output && cross-env LERNA=true lerna run test:coverage",
"test:report": "nyc report --reporter=text",
"test:send_report": "nyc report --reporter=text-lcov | coveralls",
"build": "lerna run build",
"build:watch": "lerna run --parallel build:watch",
"prettier": "prettier --write \"packages/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/michalzaq12/xpda-dev.git"
},
"keywords": [],
"author": "“Michał <“[email protected]”>",
"license": "MIT",
"bugs": {
"url": "https://github.com/michalzaq12/xpda-dev/issues"
},
"homepage": "https://github.com/michalzaq12/xpda-dev#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@salesforce/ts-sinon": "^1.1.0",
"@types/node": "^12.6.4",
"@types/sinon": "^7.0.5",
"@types/tmp": "^0.1.0",
"@types/webpack": "^4.32.1",
"ava": "^2.2.0",
"coveralls": "^3.0.5",
"cross-env": "^5.2.0",
"husky": "^1.3.1",
"lerna": "^3.16.4",
"lint-staged": "^8.1.0",
"nyc": "^14.1.1",
"prettier": "1.15.3",
"rimraf": "^2.6.3",
"sinon": "^7.4.1",
"tmp": "^0.1.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,md},": [
"prettier --write",
"git add"
]
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"include": [
"packages/**/*.ts"
],
"all": true
}
}