-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 752 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 752 Bytes
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
{
"name": "mithril_sample",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:msx": "msx -x jsx --no-precompile assets/js/ assets/js/",
"build:js": "npm run build:msx && browserify assets/js/app.js -o dist/js/app.js",
"build:ts": "node_modules/.bin/tsc --module commonjs assets/ts/app.ts",
"build": "npm run build:msx && npm run build:ts && browserify assets/ts/app.js -o dist/js/app.js "
},
"author": "",
"license": "ISC",
"devDependencies": {
"browser-sync": "^2.8.2",
"http-server": "^0.8.0",
"mithril": "^0.2.0",
"typescript": "^1.5.3"
},
"dependencies": {
"browserify": "^11.0.1",
"mithril": "^0.2.0",
"msx": "^0.4.1",
"typescript": "^1.5.3"
}
}