-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1006 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
{
"name": "tree-visit",
"version": "0.4.2",
"description": "A tree traversal library.",
"main": "lib/index.js",
"files": [
"lib"
],
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib && tsc --declaration",
"build:watch": "rm -rf ./lib && tsc --declaration --watch",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run test && npm run build",
"clean": "rm -rf ./lib"
},
"repository": "https://github.com/dabbott/tree-visit",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"prettier": {
"proseWrap": "never",
"singleQuote": true,
"trailingComma": "es5",
"semi": false
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"lib"
]
}
}