forked from ts-type-makeup/superstruct-ts-transformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.41 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
{
"name": "superstruct-ts-transformer",
"version": "0.2.3",
"main": "dist/index.js",
"module": "module/index.js",
"author": "Saito Nakamura <[email protected]>",
"license": "MIT",
"scripts": {
"test": "npm run lint && npm run test:raw | faucet",
"test:raw": "tape -r ts-node/register tests/*.test.js",
"watch": "tsc --watch --project ./tsconfig.json",
"build": "npm run build:commonjs && npm run build:module",
"build:commonjs": "tsc --project ./tsconfig.json",
"build:module": "tsc --project ./tsconfig.module.json",
"lint": "tsc --project ./tsconfig.json --noEmit",
"prepublishOnly": "npm test && npm run build"
},
"keywords": [
"typescript",
"typescript-transformer",
"typescript-compiler-api",
"json-validation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ts-type-makeup/superstruct-ts-transformer.git"
},
"bugs": {
"url": "https://github.com/ts-type-makeup/superstruct-ts-transformer/issues"
},
"homepage": "https://github.com/ts-type-makeup/superstruct-ts-transformer#readme",
"dependencies": {
"superstruct": "^0.8.3",
"ts-type-visitor": "^0.2.2"
},
"peerDependencies": {
"typescript": "^3.5.2 || ^4.0.0"
},
"devDependencies": {
"@types/tape": "^4.13.0",
"faucet": "^0.0.1",
"node-eval": "^2.0.0",
"tape": "^4.13.2",
"ts-node": "^8.8.2",
"typescript": "^4.1.2"
}
}