-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 2.25 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
{
"name": "autotypes",
"version": "0.1.2",
"description": "Automatically download types for TypeScript",
"author": "Saulo Vallory <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cashfarm/autotypes/issues"
},
"homepage": "https://github.com/cashfarm/autotypes#README",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": {
"autotypes": "./lib/index.js"
},
"scripts": {
"setup:dev": "yarn install && mkdir -p node_modules/@cashfarm/autotypes && ln -s ../../lib node_modules/@cashfarm/autotypes",
"build": "npm run clean && npm run lint && npm test && tsc && npm run lint:pkg",
"clean": "trash ./lib",
"docs": "./node_modules/.bin/typedoc --out ./docs --target es6 --mode file --ignoreCompilerErrors",
"docs:publish": "./node_modules/.bin/gh-pages -d docs",
"lint": "tslint -c ./tslint.json --type-check --project tsconfig.json",
"lint:pkg": "ts-package-lint",
"test": "cd tests && mocha --compilers ts:ts-node/register ./**/*.spec.ts",
"test:watch": "tsc -w & nodemon --watch lib --watch tests -e js,ts --exec 'npm test' --delay 500ms",
"test:debug": "cd tests && tsc && node-inspector ../node_modules/.bin/_mocha ./compiled/tests/*.spec.js --debug-brk",
"patch-release": "npm version patch && npm publish && git push --follow-tags"
},
"devDependencies": {
"@types/chai-as-promised": "^0.0.30",
"@types/chalk": "^0.4.31",
"@types/debug": "^0.0.29",
"@types/istanbul": "^0.4.29",
"@types/lab": "^11.1.0",
"@types/lodash": "^4.14.63",
"@types/mocha": "^2.2.41",
"@types/mongodb": "^2.1.43",
"@types/node": "^7.0.13",
"@types/node-uuid": "^0.0.28",
"@types/request": "^0.0.42",
"@types/request-promise-native": "^1.0.2",
"@types/rimraf": "^0.0.28",
"@types/source-map-support": "^0.2.28",
"@types/stripe": "^2.0.2",
"chai": "^3.5.0",
"mocha": "^3.3.0",
"trash-cli": "^1.4.0",
"ts-node": "^3.0.2",
"ts-package-lint": "^0.2.2",
"tslint": "4.x",
"tslint-microsoft-contrib": "^4.0.1",
"typescript": "^2.2.2"
},
"dependencies": {
"chalk": "^1.1.3",
"debug": "^2.6.4",
"lodash": "^4.17.4",
"request": "^2.81.0",
"request-promise-native": "^1.0.3",
"tslib": "^1.6.1"
}
}