forked from hizzgdev/jsmind
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
58 lines (58 loc) · 1.37 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
{
"name": "mind-map",
"version": "0.3.0",
"description": "mind-map for typescript",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"lint": "npm run tslint \"src/**/*.ts\"",
"tslint": "tslint",
"build": "tsc",
"prepublish": "npm run build",
"test": "mocha -r ts-node/register -r jsdom-global/register src/**/*.spec.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test",
"commit": "git-cz",
"release": "standard-version"
},
"dependencies": {
"lodash": "4.17.4"
},
"files": [
"dist",
"src"
],
"devDependencies": {
"typescript": "4.0.2",
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.1.0",
"jsdom": "^15.2.1",
"jsdom-global": "^3.0.2",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"standard-version": "4.2.0",
"ts-node": "^8.5.4",
"tslint": "^6.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wfsovereign/jsmind.git"
},
"keywords": [
"mind-map",
"jsmind"
],
"author": "wfsovereign",
"license": "ISC",
"bugs": {
"url": "https://github.com/wfsovereign/jsmind/issues"
},
"homepage": "https://github.com/wfsovereign/jsmind#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}