-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 872 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 872 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
27
28
29
30
31
32
33
{
"name": "@denali-js/loader",
"version": "0.0.3",
"description": "The bundle loader used by compiled Denali applications to load modules at runtime",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"prepublishOnly": "npm run build",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/denali-js/loader.git"
},
"author": "Dave Wasmer",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/denali-js/loader/issues"
},
"homepage": "https://github.com/denali-js/loader#readme",
"devDependencies": {
"ava": "^0.24.0",
"semantic-release": "^8.2.0",
"typescript": "^2.6.2"
},
"dependencies": {
"@types/node": "^8.0.53",
"@types/resolve": "^0.0.4",
"is-builtin-module": "^2.0.0",
"resolve": "^1.5.0"
}
}