-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.27 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
{
"name": "@vhx/vhxjs",
"version": "3.0.0",
"description": "VHX Javascript API Client",
"main": "dist/index.js",
"browser": {
"./dist/index.js": "./dist/client.js"
},
"author": "VHX",
"homepage": "https://github.com/vhx/vhx-js",
"contributors": [
"David Gonzalez <[email protected]> ",
"Scott Robertson <[email protected]>"
],
"scripts": {
"node": "NODE_BUILD=true rollup -c rollup.config.js",
"client": "NODE_BUILD=false rollup -c rollup.config.js",
"production": "NODE_ENV=production npm run node; NODE_ENV=production npm run client;",
"dev": "npm run node && npm run client"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/vhx/vhx-js.git"
},
"bugs:": "https://github.com/vhx/vhx-js/issues",
"devDependencies": {
"nodemon": "^1.12.1",
"rollup": "^0.41.6",
"rollup-plugin-analyzer": "^2.1.0",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-conditional": "^1.1.1",
"rollup-plugin-filesize": "^4.0.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-nodent": "^0.1.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^3.2.2"
},
"dependencies": {
"node-fetch": "^2.2.0"
}
}