forked from developit/dlv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.01 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
{
"name": "@paxperscientiam/dlv.ts",
"homepage": "https://github.com/paxperscientiam/dlv.ts",
"version": "1.3.0",
"description": "Safely get a dot-notated property within an object.",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"source": "./index.ts",
"scripts": {
"prepublishOnly": "npm run start",
"clean": "command rm -rf ./lib/*",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"start": "npm run clean && npm run tsc"
},
"keywords": [
"delve",
"dot notation",
"dot",
"typescript"
],
"files": [
"index.ts",
"dist"
],
"author": "Jason Miller <[email protected]> (http://jasonformat.com)",
"contributors": [
{
"name": "Christopher David Ramos",
"url": "https://www.paxperscientiam.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/paxperscientiam/dlv.ts.git"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^12.6.9",
"ts-node": "^8.3.0",
"typescript": "^3.9.7"
},
"publishConfig": {
"access": "public"
}
}