-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "typescript-definition-tester",
"version": "0.0.6",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc --module CommonJS --declaration --target ES6 ./src/index.ts --outDir dist/ && tsc --module CommonJS ./test/index.ts --outDir testOut/",
"postbuild": "node bundler.js",
"pretest": "npm run build",
"test": "mocha testOut/test/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/adamcarr/typescript-definition-tester.git"
},
"keywords": [
"typescript"
],
"author": {
"name": "Adam Carr",
"email": "[email protected]",
"url": "http://blog.adamcarr.net"
},
"license": "MIT",
"devDependencies": {
"@types/assertion-error": "^1.1.0",
"@types/lodash": "^4.14.108",
"@types/mocha": "^5.2.0",
"@types/node": "8",
"bluebird": "^2.9.24",
"mocha": "^5.1.1"
},
"typescript": {
"definition": "./dist/typescript-definition-tester.d.ts"
},
"dependencies": {
"assertion-error": "^1.0.1",
"dts-bundle": "^0.2.0",
"lodash": "^3.6.0"
},
"peerDependencies": {
"typescript": "1.x || 2.x"
}
}