-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1002 Bytes
/
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
{
"name": "read-tsconfig-up",
"version": "1.0.1",
"description": "Find up and read `tsconfig.json` file",
"repository": "iguntur/read-tsconfig-up",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build:release",
"build": "npm run clean && tsc",
"build:release": "npm run test && npm run clean:dist",
"clean": "rm -rf dist",
"clean:dist": "rm -rf dist/*.test.*",
"test": "npm run build && ava"
},
"author": {
"name": "Guntur Poetra",
"email": "[email protected]",
"url": "https://github.com/iguntur"
},
"keywords": [
"config",
"find-up",
"package",
"read-up",
"read",
"ts",
"tsc",
"tsconfig",
"typescript",
"up"
],
"engines": {
"node": ">=6"
},
"dependencies": {
"find-up": "^3.0.0",
"read-tsconfig": "^1.0.0"
},
"devDependencies": {
"@guntur/tsconfig": "^1.0.1",
"@types/node": "^10.12.17",
"ava": "^1.0.1",
"typescript": "^3.2.2"
}
}