-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.72 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
{
"name": "unshell",
"version": "1.0.2",
"description": "Set your shell free",
"author": "Romain Prignon <pro.rprignon@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/romainPrignon/unshell.git"
},
"bin": {
"unshell": "dist/cli.js"
},
"main": "dist/unshell.js",
"types": "dist/unshell.d.ts",
"engines": {
"node": ">=14",
"npm": ">=9"
},
"files": [
"dist",
"examples",
"type",
"LICENSE",
"package-lock.json",
"package.json",
"README.md",
"unshell.png"
],
"scripts": {
"compile": "rm -rf dist/ && tsc",
"lint": "npm run lint:src && npm run lint:spec",
"lint:src": "tslint --project tsconfig.json",
"lint:spec": "tslint --project spec/tsconfig.json",
"version:patch": "npm version patch -m ':bookmark: Release %s'",
"version:minor": "npm version minor -m ':bookmark: Release %s'",
"version:major": "npm version major -m ':bookmark: Release %s'",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run compile",
"test": "jest --detectOpenHandles --forceExit --maxWorkers=50%",
"test:examples": "jest --config examples/jest.config.js --detectOpenHandles --forceExit",
"test:coverage": "npm run test -- --coverage"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.0",
"@types/node": "^14",
"husky": "^1.1.2",
"jest": "^23.6.0",
"release-it": "^7.6.1",
"ts-jest": "^23.10.5",
"ts-node": "^8.1.0",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"tslint-immutable": "^6.0.1",
"typescript": "^5.1.6"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test:coverage"
}
}
}