-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.78 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
63
64
65
66
67
{
"name": "dotfile-types",
"version": "0.0.0-semantic-release",
"author": "Tiffany Le-Nguyen <letiffany.nguyen@gmail.com> (github.com/sirMerr)",
"license": "MIT",
"description": "Transform .properties, .env and other key-value pair dotfile files into TypeScript interfaces",
"files": [
"lib"
],
"types": "lib/index.d.ts",
"main": "lib/index.js",
"bin": "lib/cli.js",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel ./*.ts --out-dir lib --extensions \".ts,.tsx\"",
"test": "jest",
"start": "ts-node cli.ts",
"semantic-release": "semantic-release",
"prepublishOnly": "npm run build"
},
"keywords": [
"properties",
"env",
"generate",
"generator",
"to",
"typescript",
"ts",
"ini",
"properties2ts",
"interface",
"transform",
"make",
"into"
],
"dependencies": {
"json-ts": "^1.6.4",
"lodash.set": "^4.3.2",
"meow": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.1",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.1.0",
"@types/execa": "^0.9.0",
"@types/jest": "^23.3.13",
"@types/lodash.set": "^4.3.4",
"@types/meow": "^5.0.0",
"@types/node": "^10.12.20",
"@types/rimraf": "^2.0.2",
"execa": "^1.0.0",
"jest": "^24.3.1",
"ts-node": "^8.0.3",
"typescript": "^3.2.4",
"semantic-release": "^15.13.3"
},
"repository": {
"type": "git",
"url": "https://github.com/sirMerr/dotfile-types.git"
}
}