forked from silvermine/toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.03 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
{
"name": "@silvermine/toolbox",
"version": "0.1.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",
"test": "check-node-version --npm 6.13.4 && TS_NODE_PROJECT='tests/tsconfig.json' TS_NODE_FILES=true nyc mocha --opts ./.mocha.opts",
"commitlint": "commitlint --from 0b9d320"
},
"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.x"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@commitlint/travis-cli": "8.3.5",
"@silvermine/chai-strictly-equal": "1.1.0",
"@silvermine/eslint-config": "3.0.0-rc.0",
"@silvermine/typescript-config": "0.9.0",
"@types/chai": "4.1.7",
"@types/mocha": "5.2.5",
"@types/node": "8.10.36",
"@types/sinon": "5.0.5",
"chai": "4.2.0",
"check-node-version": "4.0.2",
"coveralls": "3.0.9",
"cz-conventional-changelog": "3.1.0",
"grunt": "1.0.4",
"grunt-cli": "1.3.2",
"grunt-concurrent": "2.3.1",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-watch": "1.1.0",
"grunt-eslint": "22.0.0",
"grunt-exec": "3.0.0",
"mocha": "5.2.0",
"nyc": "13.1.0",
"sinon": "5.1.1",
"source-map-support": "0.5.16",
"standard-version": "5.0.2",
"ts-node": "7.0.1",
"tslib": "1.9.3",
"typescript": "3.2.2"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}