-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "mindnotes",
"version": "0.0.1",
"description": "Text driven mind map creation.",
"main": "index.js",
"scripts": {
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"test:watch": "npm run test -- --watch-files src/**/*.ts --watch --watch-extensions ts --full-trace",
"serve": "parcel src/index.html -d out",
"build": "npm run clean && parcel build src/index.html -d out --public-url ./",
"deploy": "npm run build && gh-pages -d out",
"clean": "rimraf .cache out",
"format": "prettier --write src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcoklein/mindnotes.git"
},
"keywords": [
"Mindmap",
"text2mindmap"
],
"author": "Marco Klein",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcoklein/mindnotes/issues"
},
"homepage": "https://github.com/marcoklein/mindnotes#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/d3": "^5.7.2",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"gh-pages": "^2.2.0",
"mocha": "^7.1.1",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"dependencies": {
"d3": "^5.16.0",
"jsondiffpatch": "^0.6.0"
}
}