-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 2.48 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": "@silvermine/toolbox",
"version": "0.4.0",
"description": "A library of common TypeScript types, custom type guards, and utility functions.",
"main": "./dist/commonjs/index",
"types": "./dist/types/index.d.ts",
"module": "./dist/esm/index",
"scripts": {
"prepare": "grunt build",
"check-node-version": "check-node-version --npm 10.5.0 --print",
"test": "TS_NODE_PROJECT='tests/tsconfig.json' TS_NODE_FILES=true nyc mocha --opts ./.mocha.opts",
"eslint": "eslint '{,!(node_modules|dist)/**/}*.{js,ts}'",
"markdownlint": "markdownlint -c .markdownlint.json -i CHANGELOG.md '{,!(node_modules)/**/}*.md'",
"commitlint": "commitlint --from 0b9d320",
"standards": "npm run markdownlint && npm run eslint",
"release:preview": "node ./node_modules/@silvermine/standardization/scripts/release.js preview",
"release:prep-changelog": "node ./node_modules/@silvermine/standardization/scripts/release.js prep-changelog",
"release:finalize": "node ./node_modules/@silvermine/standardization/scripts/release.js finalize"
},
"author": "Matt Luedke",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/silvermine/toolbox.git"
},
"bugs": {
"url": "https://github.com/silvermine/toolbox/issues"
},
"homepage": "https://github.com/silvermine/toolbox#readme",
"keywords": [
"TypeScript",
"types",
"type guards"
],
"peerDependencies": {
"tslib": "^1.9.0 || ^2"
},
"devDependencies": {
"@silvermine/chai-strictly-equal": "1.1.1",
"@silvermine/eslint-config": "github:silvermine/eslint-config-silvermine#aa8ecacb12ab778078fd195d3b15f09ecac76c11",
"@silvermine/standardization": "2.0.0",
"@silvermine/typescript-config": "git+https://github.com/silvermine/typescript-config#23213e33077089e723629dead5342abe6f3b3c8c",
"@types/chai": "4.3.19",
"@types/mocha": "5.2.7",
"@types/node": "12.20.45",
"@types/sinon": "5.0.7",
"chai": "4.5.0",
"check-node-version": "4.2.1",
"coveralls": "3.1.1",
"eslint": "8.57.0",
"grunt": "1.6.1",
"grunt-cli": "1.3.2",
"grunt-concurrent": "3.0.0",
"grunt-contrib-clean": "2.0.1",
"grunt-contrib-watch": "1.1.0",
"grunt-exec": "3.0.0",
"mocha": "5.2.0",
"nyc": "13.3.0",
"sinon": "5.1.1",
"source-map-support": "0.5.21",
"ts-node": "7.0.1",
"tslib": "2.6.3",
"typescript": "3.9.10"
}
}