-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 KB
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": "@zaptic-external/transpiler",
"version": "0.4.2",
"description": "A simple ts type transpiler",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Ben <ben@zaptic.com>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Zaptic/transpiler"
},
"keywords": [
"transpiler",
"json",
"joi",
"schema",
"typescript"
],
"bugs": {
"url": "https://github.com/Zaptic/transpiler/issues"
},
"scripts": {
"release": "./scripts/release",
"lint": "tslint -c tslint.json --project tsconfig.json",
"prettier": "prettier --config prettier.config.json '**' --write",
"test": "mocha --colors --require ts-node/register --ui bdd $(find test/ -name 'runner.ts')"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.4",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"prettier": "^1.14.3",
"ts-node": "^8.0.2",
"tslint": "^5.18.0",
"typescript": "^3.7.5"
},
"peerDependencies": {
"typescript": "^3.4.3"
}
}