-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
{
"name": "flow-launcher-helper",
"version": "2.2.0",
"description": "A simple lib to help build plugins for Flow Launcher",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint .",
"test": "nyc --reporter=lcov --reporter=text-summary mocha --reporter spec --require ts-node/register src/tests/*.test.ts",
"prepublishOnly": "npm run lint",
"prepare": "npm run build",
"preversion": "npm run lint && npm run test",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielcarloto/flow-launcher-helper.git"
},
"keywords": [
"Flow Launcher"
],
"author": "Gabriel Carloto",
"license": "MIT",
"files": [
"lib/**/*",
"README.md"
],
"homepage": "https://github.com/gabrielcarloto/flow-launcher-helper",
"bugs": {
"url": "https://github.com/gabrielcarloto/flow-launcher-helper/issues"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.16",
"@types/rewire": "^2.5.28",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"chai": "^4.3.7",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"rewire": "^6.0.0",
"sinon": "^15.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}