-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.77 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.77 KB
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
{
"name": "compare-lists",
"version": "1.0.10",
"description": "Super efficiently compares two sorted lists (arrays, strings, anything that is iterable actually).",
"main": "index.js",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.json",
"postbuild": "npm run package",
"clean": "rimraf ./dist",
"check": "npm run lint && npm run build && npm test",
"lint": "tslint -p ./tsconfig.json",
"test": "jest --coverage",
"package": "ts-node ./support/package.ts",
"prerelease": "npm run build",
"release": "git checkout master && git pull origin master && standard-version && ts-node ./support/updatePackageVersion.ts",
"ship": "git push --follow-tags origin master && cd ./dist && npm publish"
},
"keywords": [
"compare",
"collections",
"lists",
"arrays",
"maps",
"strings",
"iterable",
"iterator"
],
"author": "Ben <codeandcats@gmail.com>",
"license": "MIT",
"private": true,
"husky": {
"hooks": {
"pre-commit": "npm run check",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS --config ./commitlint.config.json"
}
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@types/jest": "25.1.4",
"@types/node": "13.9.3",
"coveralls": "3.0.11",
"get-root-path": "2.0.2",
"husky": "4.2.3",
"jest": "25.2.3",
"replace": "1.1.5",
"standard-version": "7.1.0",
"ts-jest": "25.2.1",
"ts-node": "8.7.0",
"tslint": "6.1.0",
"typescript": "3.8.3"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/codeandcats/compare-lists.git"
},
"bugs": {
"url": "https://github.com/codeandcats/compare-lists/issues"
},
"homepage": "https://github.com/codeandcats/compare-lists#readme"
}