forked from timocov/dts-bundle-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.18 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
{
"private": true,
"name": "dts-bundle-generator",
"version": "1.5.0",
"description": "DTS Bundle Generator",
"main": "bundle-generator.js",
"bin": "bin/dts-bundle-generator.js",
"author": "Eugene Timokhov",
"bugs": {
"url": "https://github.com/timocov/dts-bundle-generator/issues"
},
"dependencies": {
"typescript": "^2.5.1",
"yargs": "~11.0.0"
},
"devDependencies": {
"@types/jasmine": "~2.8.7",
"@types/node": "7.0.8",
"@types/yargs": "~10.0.1",
"jasmine": "~2.9.0",
"tslint": "~5.10.0"
},
"license": "MIT",
"readme": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/timocov/dts-bundle-generator.git"
},
"scripts": {
"lint": "tslint --config tslint.json --project tsconfig.json",
"compile": "tsc",
"compile-tests": "tsc --project tsconfig.tests.json",
"prepare-release": "npm run compile && node build/index.js && npm run lint && npm run compile-tests && npm run test && node build/prod-ready",
"test": "jasmine tests/all-test-cases.js"
},
"yargs": {
"boolean-negation": false,
"camel-case-expansion": false,
"dot-notation": false,
"short-option-groups": false
}
}