-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "js-rosetree",
"version": "1.1.0",
"description": "Set of utilities for creating and manipulating rosetrees",
"main": "lib/cjs/index.js",
"scripts": {
"test": "jest",
"prepublish": "npm run test && npm run build",
"build": "tsc && tsc -p tsconfig-cjs.json"
},
"keywords": [
"tree",
"rosetree",
"multi-way tree",
"data structures"
],
"author": "Anthony Raymond Bullard",
"license": "MIT",
"dependencies": {
"@types/deep-freeze": "^0.1.2",
"typescript": "^3.9.6"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"deep-freeze": "0.0.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"ts-jest": "^26.1.2",
"typedoc": "^0.17.8",
"typedoc-plugin-markdown": "^2.3.1"
},
"module": "lib/esm/index.js",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"!lib/**/*.spec.js"
]
}