-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 934 Bytes
/
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
{
"name": "extra-life",
"version": "1.0.5",
"description": "Extra Life API wrapper for JavaScript in the browser and Node.js.",
"author": "Michael Irigoyen <[email protected]>",
"license": "MIT",
"keywords": [
"extra",
"life",
"api",
"extralife",
"extra-life",
"donor",
"donordrive",
"donor-drive"
],
"repository": {
"type": "git",
"url": "https://github.com/mririgoyen/extra-life.git"
},
"files": [
"dist"
],
"main": "dist/main.js",
"module": "dist/module.js",
"browser": {
"./dist/main.js": "./dist/extra-life.js"
},
"scripts": {
"build": "rollup -c",
"publish": "yarn build; npm publish",
"publish:dry": "yarn build; npm publish --dry-run"
},
"devDependencies": {
"eslint": "^7.32.0",
"rollup": "^2.58.0",
"rollup-plugin-jscc": "^2.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2"
}
}