-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.89 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "shipit-gs",
"version": "0.0.0-beta",
"description": "Set of deployment tasks for Shipit using gsutil commands. ",
"repository": {
"type": "git",
"url": "https://github.com/randym/shipit-gs.git"
},
"bugs": {
"url": "https://github.com/randym/shipit-gs/issues"
},
"keywords": [
"shipit",
"deploy",
"task",
"Google Storage"
],
"author": "Randy Morgan<digital.ipseity@gmail.com>",
"license": "MIT",
"directories": {
"test": "test"
},
"files": [
"index.js",
"tasks",
"lib"
],
"main": "./lib/shipit-gs.bundle.js",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"prepare": "npm run build",
"lint": "eslint ./src --max-warnings 0",
"esdoc": "esdoc -c esdoc.json",
"test": "jest --config config.json",
"test-ci": "jest --config config.json --coverage"
},
"homepage": "https://github.com/randym/shipit-gs",
"devDependencies": {
"marked": "~> 0.3.9",
"shipit-cli": "latest",
"babel-core": "^6.26.0",
"babel-preset-shopify": "^16.2.0",
"babel-jest": "^22.1.0",
"babel-loader": "^7.1.2",
"concurrently": "^3.5.1",
"core-js": "^2.5.3",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"esdoc": "^1.0.4",
"eslint": "^4.16.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-shopify": "^19.0.0",
"jest": "^21.2.1",
"webpack": "^3.10.0",
"typescript": "*"
},
"dependencies": {
"bluebird": "^3.5.1",
"chalk": "^2.3.0",
"lodash": "^4.17.4",
"moment": "^2.20.1",
"path2": "^0.1.0",
"shipit-utils": "^1.4.0",
"url": "^0.11.0",
"inquirer": "^5.1.0"
},
"eslintConfig": {
"extends": "plugin:shopify/esnext",
"env": {}
},
"jest": {
"setupTestFrameworkScriptFile": "./scripts/test/setup.js"
},
"babel": {
"presets": [
[
"shopify/web"
]
]
}
}