-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.27 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.27 KB
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
{
"name": "barcode-creator-for-google-apps",
"version": "0.0.1",
"description": "Create code128 barcodes for use in google docs",
"license": "",
"directories": {
"test": "test"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"test": "mocha --require babel-register",
"test:watch": "npm test -- --watch -R min",
"deploy": "npm run build && $(npm bin)/gapps upload",
"postversion": "git push && git push --tags"
},
"author": "Joshua Clark <josh.slark@gmail.com>",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-plugin-transform-es3-member-expression-literals": "^6.8.0",
"babel-plugin-transform-es3-property-literals": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"gas-webpack-plugin": "^0.1.0",
"imports-loader": "^0.7.0",
"mocha": "^3.1.2",
"node-google-apps-script": "^1.1.5",
"testdouble": "^1.9.0",
"webpack": "^1.13.3"
},
"dependencies": {
"apps-script-oauth2": "git+https://github.com/googlesamples/apps-script-oauth2.git",
"eslint": "^5.16.0",
"jquery": "^3.4.1",
"jsbarcode": "^3.11.0",
"wrapper-webpack-plugin": "^0.1.11"
}
}