-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
173 lines (173 loc) · 5.97 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"name": "mithril-treeview",
"version": "0.1.1",
"description": "A tree view component for the browser created with mithril.js.",
"private": true,
"main": "dist/treeview.js",
"files": [
"www/dist/**",
"www/examples/**"
],
"scripts": {
"prestart": "npm-run-all --parallel watch:css",
"start": "parallelshell \"http-server www\" \"npm run watch:js\" \"rerun-script\"",
"build": "npm run lint && npm-run-all --parallel \"build:img -- dist/img/\" \"build:css -- dist/treeview.css --clean-css\" \"build:js\" \"build:js-libs\"",
"build:js": "jspm build src - mithril - radio dist/treeview.js --format umd --global-name createPickdrasil --global-deps \"{'mithril':'m'}\" --global-deps \"{'radio':'radio'}\" --skip-source-maps --minify",
"build:js-libs": "npm-run-all build:js-mithril build:js-radio",
"build:js-mithril": "jspm build mithril dist/mithril.js --format umd --global-name m --skip-source-maps --minify",
"build:js-radio": "jspm build radio dist/radio.js --format umd --global-name radio --skip-source-maps --minify",
"build:jsinterfaces": "tsc www/src/treeview/treeview.ts --declaration --outFile dist/treeview.js",
"build:css": "lessc www/css/app.less",
"build:img": "imagemin-newer www/img/",
"watch:js": "chokidar-socket-emitter",
"watch:css": "npm run build:css -- www/treeview.css",
"lint": "standard",
"postinstall": "jspm install"
},
"watches": {
"watch:css": "src/css/**"
},
"author": "Johann Haaf",
"license": "Dual License: Apache 2 License & MIT License",
"homepage": "https://github.com/Draggha",
"repository": "https://github.com/Draggha/pickdrasil-mithril",
"dependencies": {
"mithril": "^0.2.3",
"radio": "^0.2.0"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"chokidar-socket-emitter": "^0.5.0",
"http-server": "^0.9.0",
"imagemin-newer": "^1.0.1",
"jspm": "^0.17.0-beta.17",
"less": "^2.7.1",
"less-plugin-clean-css": "^1.5.1",
"npm-run-all": "^1.6.0",
"parallelshell": "^2.0.0",
"rerun-script": "^0.6.0",
"standard": "^6.0.8",
"typescript": "^1.9.0-dev.20160604-1.0"
},
"standard": {
"ignore": [
"dist/**",
"node_modules/**",
"www/jspm_packages/**",
"www/jspm.browser.js",
"www/jspm.config.js"
]
},
"jspm": {
"directories": {
"baseURL": "www"
},
"dependencies": {
"babel-core": "npm:babel-core@^6.7.2",
"mithril": "npm:[email protected]",
"plugin-typescript": "github:frankwallis/[email protected]",
"radio": "npm:[email protected]",
"ts": "github:frankwallis/[email protected]"
},
"devDependencies": {
"babel-runtime": "npm:babel-runtime@^6.6.1",
"http": "github:jspm/nodelibs-http@^0.2.0-alpha",
"nodelibs-events": "github:jspm/[email protected]",
"plugin-babel": "npm:systemjs-plugin-babel@^0.0.8",
"systemjs-hot-reloader": "github:capaj/systemjs-hot-reloader@^0.6.0",
"systemjs-plugin-babel": "npm:systemjs-plugin-babel@^0.0.12",
"tape": "npm:tape@^4.5.1",
"tape-dom": "npm:tape-dom@^0.0.10"
},
"buildConfig": {
"transpileES6": true,
"minify": true
},
"peerDependencies": {
"assert": "github:jspm/nodelibs-assert@^0.2.0-alpha",
"buffer": "github:jspm/nodelibs-buffer@^0.2.0-alpha",
"child_process": "github:jspm/nodelibs-child_process@^0.2.0-alpha",
"constants": "github:jspm/nodelibs-constants@^0.2.0-alpha",
"core-js": "npm:core-js@^2.2.1",
"crypto": "github:jspm/nodelibs-crypto@^0.2.0-alpha",
"events": "github:jspm/nodelibs-events@^0.2.0-alpha",
"fs": "github:jspm/nodelibs-fs@^0.2.0-alpha",
"module": "github:jspm/nodelibs-module@^0.2.0-alpha",
"net": "github:jspm/nodelibs-net@^0.2.0-alpha",
"os": "github:jspm/nodelibs-os@^0.2.0-alpha",
"path": "github:jspm/nodelibs-path@^0.2.0-alpha",
"process": "github:jspm/nodelibs-process@^0.2.0-alpha",
"readable-stream": "npm:readable-stream@^2",
"readline": "github:jspm/nodelibs-readline@^0.2.0-alpha",
"stream": "github:jspm/nodelibs-stream@^0.2.0-alpha",
"string_decoder": "github:jspm/nodelibs-string_decoder@^0.2.0-alpha",
"tty": "github:jspm/nodelibs-tty@^0.2.0-alpha",
"url": "github:jspm/nodelibs-url@^0.2.0-alpha",
"util": "github:jspm/nodelibs-util@^0.2.0-alpha",
"vm": "github:jspm/nodelibs-vm@^0.2.0-alpha"
},
"overrides": {
"npm:[email protected]": {
"main": false,
"dependencies": {},
"optionalDependencies": {
"core-js": "^1.2.0"
}
},
"npm:[email protected]": {
"main": "browser.js",
"jspmNodeConversion": false,
"format": "cjs",
"map": {
"./browser.js": {
"node": "./node.js"
},
"fs": "@node/fs",
"net": "@node/net",
"tty": "@node/tty",
"util": "@node/util"
}
},
"npm:[email protected]": {
"jspmNodeConversion": false
},
"npm:[email protected]": {
"format": "global",
"main": "javascript/diff_match_patch_uncompressed.js",
"meta": {
"javascript/diff_match_patch_uncompressed.js": {
"exports": "diff_match_patch",
"format": "global"
}
}
},
"npm:[email protected]": {
"ignore": [
"test.js"
]
},
"github:frankwallis/[email protected]": {
"dependencies": {
"typescript": "npm:[email protected]"
}
},
"npm:[email protected]": {
"jspmNodeConversion": false,
"format": "cjs"
},
"npm:[email protected]": {
"browser": {},
"map": {
"buffer": "@empty",
"child_process": "@empty",
"fs": "@empty",
"path": "@empty",
"process": "@empty",
"readline": "@empty"
}
}
}
}
}