generated from Bwca/template_ts-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "property-string-path",
"version": "1.1.1",
"description": "Generate type safe dot paths to object properties based on an interface.",
"main": "./dist/index.js",
"files": [
"dist/**"
],
"scripts": {
"build": "tsup src/index.ts --minify --dts",
"dev": "nodemon",
"lint": "eslint */**/*.{ts,js} --quiet --fix"
},
"keywords": [
"object",
"property",
"dot",
"path",
"string",
"key",
"nested",
"prop"
],
"author": {
"name": "Volodymyr Yepishev",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Bwca/property-string-path.git"
},
"bugs": {
"url": "https://github.com/Bwca/property-string-path/issues"
},
"homepage": "https://github.com/Bwca/property-string-path#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"nodemon": "^2.0.7",
"prettier": "2.0.5",
"tsup": "^4.6.1",
"typescript": "^4.2.3"
}
}