forked from ask-utils/ask-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.22 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": "ask-utils",
"version": "3.0.0",
"description": "utility functions for ask-sdk",
"main": "dist/index.js",
"scripts": {
"doc": "npx compodoc -c .compodocrc.json && touch docs/.nojekyll",
"doc:serve": "yarn doc && npx compodoc -s",
"test": "lerna run test",
"type": "lerna run type",
"build": "lerna run build",
"bootstrap": "lerna bootstrap",
"lerna": "lenra",
"reboot": "lerna clean -y && lerna bootstrap",
"postversion": "git push origin $(git describe --abbrev=0 --tags)",
"lint": "eslint ./**/*.ts",
"versionup": "lerna version",
"versionup:patch": "lerna version patch",
"versionup:minor": "lerna version minor",
"versionup:major": "lerna version major",
"release": "lerna publish from-package",
"release:canary": "lerna publish --canary"
},
"keywords": [
"alexa",
"ask-sdk",
"alexa-skill"
],
"bugs": {
"url": "https://github.com/ask-utils/ask-utils/issues"
},
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/ask-utils/ask-utils.git"
},
"author": "Hidetaka Okamoto <[email protected]> (https://wp-kyoto.net)",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.12",
"@types/moment": "^2.13.0",
"@types/node": "^10.12.18",
"@typescript-eslint/eslint-plugin": "^1.1.1",
"@typescript-eslint/parser": "^1.1.1",
"@typescript-eslint/typescript-estree": "^1.1.1",
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"jest": "^24.8.0",
"lerna": "^3.13.2",
"lint-staged": "^8.1.1",
"prettier": "^1.16.2",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"rollup": "^1.12.3",
"rollup-plugin-typescript2": "^0.20.1",
"ts-jest": "^23.10.5",
"typedoc": "^0.14.1",
"typescript": "^3.2.2"
},
"peerDependencies": {
"ask-sdk-model": "^1.9.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
}
}