-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 1.02 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
45
46
47
48
49
{
"name": "gasify",
"version": "1.0.1",
"description": "Browserify Plugin for Google Apps Script",
"main": "index.js",
"scripts": {
"test": "xo index.js && nyc tap test/*.test.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fossamagna/gasify.git"
},
"keywords": [
"Google Apps Script",
"browserify-plugin",
"browserify"
],
"author": "fossamagna",
"license": "MIT",
"bugs": {
"url": "https://github.com/fossamagna/gasify/issues"
},
"homepage": "https://github.com/fossamagna/gasify#readme",
"dependencies": {
"gas-entry-generator": "1.1.2",
"through2": "^4.0.2"
},
"devDependencies": {
"browserify": "^17.0.0",
"coveralls": "^3.0.1",
"nyc": "^15.0.0",
"tap": "^16.2.0",
"xo": "^0.54.0"
},
"xo": {
"envs": [
"node"
],
"space": 2,
"rules": {
"no-unused-vars": 0,
"operator-linebreak": [
2,
"before"
]
}
}
}