This repository has been archived by the owner on Jul 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.19 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
83
84
85
86
87
88
{
"name": "@ask-utils/isp",
"version": "1.2.0",
"description": "Alexa ISP utilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "rollup -c",
"tsc": "tsc",
"test": "jest",
"lint": "eslint 'libs/**/*.{ts,tsx}'",
"doc": "typedoc --out docs libs/",
"postversion": "git push origin $(git describe --abbrev=0 --tags)",
"test:watch": "jest --watch",
"test:dev": "jest --watch --silent=false --verbose false --coverage"
},
"bugs": {
"url": "https://github.com/ask-utils/isp/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ask-utils/isp.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"Alexa",
"ASK SDK",
"ISP",
"ask-utils"
],
"author": "Hidetaka Okamoto <info@wp-kyoto.net> (https://wp-kyoto.net)",
"license": "MIT",
"dependencies": {
"@ask-utils/handlers": "^1.2.0",
"ask-sdk": "^2.5.2",
"ask-sdk-core": "^2.5.2",
"ask-sdk-model": "^1.15.1",
"ask-utils": "^1.6.0",
"axios": "^0.18.0",
"moment": "^2.24.0"
},
"devDependencies": {
"@types/jest": "^23.3.12",
"@types/node": "^10.12.18",
"@types/uuid": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^1.1.1",
"@typescript-eslint/parser": "^1.1.1",
"@typescript-eslint/typescript-estree": "^1.1.1",
"eslint": "^5.15.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",
"jest": "^23.6.0",
"rollup": "^1.12.3",
"rollup-plugin-typescript2": "^0.20.1",
"ts-jest": "^23.10.5",
"typedoc": "^0.14.1",
"typescript": "^3.3.3333"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/__tests__/*/*.+(ts|tsx|js)"
]
},
"homepage": "https://github.com/ask-utils/ispt#readme",
"directories": {
"doc": "docs"
}
}