-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "regal-load-config",
"version": "1.0.0",
"description": "Configuration loading script for internal use within the Regal Game Library",
"repository": {
"type": "git",
"url": "git+https://github.com/regal/regal-load-config.git"
},
"author": "Joe Cowman <joe.r.cowman@gmail.com> (http://joecowman.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/regal/regal-load-config/issues"
},
"homepage": "https://github.com/regal/regal-load-config",
"main": "dist/regal-load-confg.js",
"files": [
"dist/"
],
"scripts": {
"test": "nyc mocha",
"build": "tsc",
"publish-coverage": "nyc report --reporter=text-lcov | coveralls",
"check-coverage": "nyc check-coverage --lines 100 --functions 100 --branches 100",
"lint": "node node_modules/tslint/bin/tslint -c tslint.json --format stylish 'src/**/*.ts'",
"commit": "git-cz"
},
"dependencies": {
"cosmiconfig": "^5.0.7",
"regal": "^0.5.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/cosmiconfig": "^5.0.3",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"commitizen": "^3.0.4",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prettier": "^1.15.2",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.1.6"
},
"prettier": {
"tabWidth": 4
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}