-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.82 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@colin-luo/tree",
"version": "4.3.0",
"description": "Tree utils.",
"main": "dist/index.js",
"types": "./declarations",
"repository": "https://github.com/luozhihua/tree-utils.git",
"scripts": {
"start": "ts-node ./src/index.ts",
"build": "tsc",
"test": "nyc mocha --opts ./tests/mocha.opts",
"doc": "jsdoc2md --files ./src/**/*.ts --configure ./jsdoc2md.json > ./documentation.md"
},
"keywords": [
"tree",
"utils",
"tree-utils",
"tree-sort",
"tree-walker",
"tree-nodes"
],
"author": "Colin Luo <mail@luozhihua.com>",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@types/chai": "^4.2.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"chai": "^4.2.0",
"istanbul": "^0.4.5",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^5.0.0",
"lint-staged": "^9.2.1",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"source-map-support": "^0.5.13",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "npm run test && lint-staged",
"pre-push": "npm run test && lint-staged && tsc --build ./tsconfig.json"
},
"lint-staged": {
"**/*.ts": [
"tslint",
"git add"
]
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"dependencies": {
"marked": "^0.7.0"
}
}