-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.23 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
{
"name": "spoddycoiner",
"version" : "1.2.2",
"description": "Google Sheets Addon that gets data from the CoinMarketCap API",
"main": "src/controller/SpoddyCoiner.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"deploy": "clasp push",
"build": "webpack --config webpack.dev.js && bash build.sh gas",
"publish": "webpack --config webpack.prod.js && bash build.sh dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpoddyCoder/SpoddyCoiner.git"
},
"author": "SpoddyCoder",
"license": "MIT",
"bugs": {
"url": "https://github.com/SpoddyCoder/SpoddyCoiner/issues"
},
"homepage": "https://github.com/SpoddyCoder/SpoddyCoiner#readme",
"devDependencies": {
"@babel/runtime": "^7.14.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-googleappsscript": "^1.0.3",
"eslint-plugin-import": "^2.23.2",
"string-replace-loader": "^3.0.2",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"webpack-merge": "^5.7.3",
"webpack-merge-and-include-globally": "^2.3.4"
}
}