-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "mithril-tree-component",
"version": "0.0.1",
"description": "A tree component for the Mitrhil framework.",
"repository": {
"type": "git",
"url": "git+https://github.com/erikvullings/mithril-tree-component.git"
},
"keywords": [
"mithril",
"tree",
"component",
"typescript"
],
"author": "Erik Vullings <[email protected]> (http://www.tno.nl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/erikvullings/mithril-tree-component/issues"
},
"homepage": "https://github.com/erikvullings/mithril-tree-component#readme",
"scripts": {
"postinstall": "lerna run link",
"build": "lerna run build",
"clean:local": "rimraf ./docs",
"clean": "npm run clean:local && lerna run --parallel clean",
"start": "lerna run --parallel start",
"deploy": "lerna run --parallel deploy",
"patch-release": "lerna run patch-release",
"minor-release": "lerna run minor-release"
},
"devDependencies": {
"lerna": "^3.22.1",
"rimraf": "^3.0.2"
}
}