-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 890 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 890 Bytes
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
{
"name": "attrpath",
"version": "0.6.0",
"description": "Attribute Path Traverser.",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"test": "jest",
"prepare": "npm run build",
"prebuild": "rimraf dist",
"build": "run-p build:*",
"build:common": "tsc",
"build:esm": "tsc -p tsconfig.esm.json",
"doc": "typedoc src/index.ts --out docs/typedoc"
},
"repository": {
"type": "git",
"url": "git@github.com:7thCode/attrpath.git"
},
"keywords": [
"Attribute",
"Path",
"Traverser"
],
"author": "7thCode",
"license": "MIT",
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^18.0.0",
"jest": "^28.1.2",
"npm-run-all": "^4.1.5",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typedoc": "^0.23.9",
"typescript": "^4.7.4"
}
}