-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.68 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
{
"name": "@hackthevalley/sdk",
"version": "1.3.3",
"description": "Hack the Valley JavaScript SDK",
"main": "lib/index.js",
"scripts": {
"test": "flow",
"flow": "flow",
"esdoc": "esdoc",
"build": "babel . -d lib --ignore node_modules",
"deploy-docs": "./scripts/deploy-docs.sh",
"deploy:patch": "npm run build && npm version patch && npm publish && git push && npm run deploy-docs",
"deploy:minor": "npm run build && npm version minor && npm publish && git push && npm run deploy-docs",
"deploy:major": "npm run build && npm version major && npm publish && git push && npm run deploy-docs",
"deploy": "npm run deploy:patch"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm test",
"pre-push": "npm run build && npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/hackthevalley/hack_the_valley_js_sdk.git"
},
"author": "Jun Zheng",
"license": "MIT",
"bugs": {
"url": "https://github.com/hackthevalley/hack_the_valley_js_sdk/issues"
},
"homepage": "https://github.com/hackthevalley/hack_the_valley_js_sdk#readme",
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.3",
"@babel/preset-env": "7.2.3",
"@babel/preset-flow": "7.0.0",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-flow-type-plugin": "^1.1.0",
"esdoc-node": "^1.0.4",
"esdoc-standard-plugin": "^1.0.0",
"flow-bin": "^0.90.0",
"flow-typed": "^2.5.1",
"husky": "^1.3.1"
},
"dependencies": {
"@babel/polyfill": "7.2.5",
"axios": "0.18.0",
"graphql-request": "^1.8.2"
}
}