-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "@talkyjs/schematics",
"version": "2.1.0",
"description": "A blank schematics",
"scripts": {
"build": "rimraf dist/* && tsc -p tsconfig.json && scripts/post-build.sh",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"schematics": "npm run build && schematics",
"prepare": "npm run build"
},
"keywords": [
"schematics"
],
"author": "Hidetaka Okamoto",
"license": "MIT",
"schematics": "./dist/collection.json",
"files": [
"dist"
],
"dependencies": {
"@angular-devkit/core": "^9.1.9",
"@angular-devkit/schematics": "^9.1.9",
"typescript": "~3.8.2"
},
"devDependencies": {
"@angular-devkit/schematics-cli": "^0.901.9",
"@types/jest": "^26.0.0",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"ask-sdk-model": "^1.28.0",
"eslint": "^7.3.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.0",
"type-fest": "^0.15.1"
},
"publishConfig": {
"access": "public"
}
}