-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.67 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
{
"name": "@asserted/shrinkwrap",
"description": "Asserted version of NPM shrinkwrap",
"version": "1.0.2",
"author": "Eric Hacke",
"bugs": {
"url": "https://github.com/assertedio/shrinkwrap/issues"
},
"dependencies": {
"aproba": "^2.0.0",
"bluebird": "^3.5.5",
"npm-package-arg": "^8.0.1",
"read-package-tree": "^5.3.1",
"semver": "^7.3.2",
"ssri": "^8.0.0"
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@ehacke/commitlint-config": "^1.0.3",
"@ehacke/eslint-config": "^1.1.6",
"@ehacke/prettier-config": "^1.0.2",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/bluebird": "^3.5.32",
"@types/fs-extra": "^9.0.1",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.22",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"chai": "^4.2.0",
"commitizen": "^4.1.2",
"commitlint": "^9.0.1",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.4.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"fixpack": "^3.0.5",
"husky": "^4.2.3",
"lint-staged": "^10.2.11",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"prettier": "^2.0.4",
"prettier-eslint-cli": "^5.0.0",
"require-inject": "^1.4.4",
"ts-node": "^8.10.2",
"typedoc": "^0.17.8",
"typedoc-plugin-markdown": "^2.3.1",
"typescript": "^3.9.6"
},
"directories": {
"lib": "lib"
},
"files": [
"lib/**/*.js"
],
"homepage": "https://github.com/assertedio/shrinkwrap#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"keywords": [
"shrinkwrap"
],
"license": "MIT",
"lint-staged": {
"package.json": [
"fixpack"
],
"*.{js,ts}": [
"prettier-eslint --write",
"eslint --fix"
]
},
"main": "lib/shrinkwrap.js",
"repository": {
"type": "git",
"url": "git+https://github.com/assertedio/shrinkwrap.git"
},
"scripts": {
"beta": "npm version prerelease && npm publish --tag beta",
"commit": "git-cz",
"lint": "fixpack && prettier-eslint --write && eslint --fix \"**/*.{js,ts}\"",
"major": "npm version major && npm publish",
"minor": "npm version minor && npm publish",
"patch": "npm version patch && npm publish",
"postpublish": "git push",
"prepare": "fixpack",
"preversion": "npm run lint && npm run test",
"test": "nyc mocha --use_strict --exit \"tests/**/*.+(unit|it).+(ts|js)\"",
"unit": "nyc mocha --use_strict --exit \"tests/**/*.unit.+(ts|js)\""
},
"types": "dist/index.d.ts"
}