-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 972 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 972 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
{
"name": "loot-table",
"version": "0.1.0",
"description": "A loot drop table implementation in JavaScript",
"main": "dist/loot-table.cjs.js",
"module": "dist/loot-table.esm.js",
"scripts": {
"build": "npm-run-all -p build:*",
"build:cjs": "rollup index.js --file dist/loot-table.cjs.js --format cjs",
"build:esm": "rollup index.js --file dist/loot-table.esm.js --format esm",
"build:iife": "rollup index.js --file LootTable.js --format iife --name LootTable",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/jotson/LootTable.js.git"
},
"author": "John Watson <john@watson-net.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jotson/LootTable.js/issues"
},
"homepage": "https://github.com/jotson/LootTable.js",
"devDependencies": {
"npm-run-all": "^4.1.3",
"rollup": "^0.67.1"
}
}