-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.66 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.66 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
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
{
"name": "@36node/content-sdk",
"version": "0.1.1",
"description": "sdk for 36node's content service",
"repository": {
"url": "36node/content-sdk",
"type": "git"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"template": "sdk",
"files": [
"bin",
"dist"
],
"config-overrides-path": "node_modules/@36node/sketch/config-overrides",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "typings/index.d.ts",
"scripts": {
"build": "NODE_ENV=production sketch build",
"format": "prettier --trailing-comma es5 --write 'src/**/*.js'",
"gen": "swagen sdk https://api.zposter.36node.com/content/v0/openapi.yml",
"lint": "sketch lint src",
"release": "standard-version",
"test": "NODE_ENV=test sketch test --env=node"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "npm run lint && CI=true npm run test"
}
},
"lint-staged": {
"*.js": [
"npm run format",
"git add"
]
},
"dependencies": {
"@36node/fetch": "^0.6.0",
"@36node/query-normalizr": "^0.4.0",
"commander": "^2.16.0"
},
"devDependencies": {
"@36node/eslint-config": "^0.6.0",
"@36node/sketch": "^0.11.1",
"@36node/swagen": "^0.12.1",
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"faker": "^4.1.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"standard-version": "^8.0.1"
},
"gitHead": "879fff0c7b33643379f534798932b5c5cc61e815"
}