-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.64 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": "typed-template",
"version": "1.2.3",
"description": "typed-template",
"license": "MIT",
"repository": "https://github.com/lifegadget/typed-template",
"author": "Ken Snyder <[email protected]>",
"keywords": [
"serverless",
"typescript"
],
"files": [
"lib",
"coverage"
],
"module": "lib/esm/index.js",
"typings": "lib/esm/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"lint": "tslint --force --format verbose \"src/**/*.ts\" -x ''",
"build": "tsc -P tsconfig-esm.json",
"deps": "./node_modules/.bin/ts-node ./scripts/deps.ts",
"deps:reset": "./node_modules/.bin/ts-node ./scripts/reset.ts",
"test": "./node_modules/.bin/ts-node ./scripts/test.ts ",
"invoke": "./node_modules/.bin/ts-node ./scripts/invoke.ts ",
"deploy": "./node_modules/.bin/ts-node ./scripts/deploy.ts ",
"publish": "./node_modules/.bin/ts-node ./scripts/publish.ts ",
"package": "./node_modules/.bin/ts-node ./scripts/package.ts ",
"coverage": "nyc --reporter=html _mocha --require ts-node/register 'test/**/*-spec.ts' && open coverage/index.html",
"coverage:coveralls": "nyc --reporter=text-lcov _mocha --require ts-node/register 'test/**/*-spec.ts'",
"coverage:codecov": "nyc _mocha --reporter=json --require ts-node/register 'test/**/*-spec.ts' > coverage/coverage.json",
"watch": "ts-node ./scripts/watch.ts",
"watch:test": "ts-node ./scripts/watch.ts test",
"watch:all": "ts-node ./scripts/watch.ts all",
"cli": "ts-node cli/index.ts --",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/faker": "^4.1.6",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.141",
"@types/mocha": "^5.2.7",
"@types/node": "^10.0.0",
"@types/rimraf": "^2.0.2",
"async-shelljs": "^0.1.2",
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"istanbul": "^0.4.5",
"lodash.first": "^3.0.0",
"lodash.last": "^3.0.0",
"mocha": "^6.2.1",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"source-map-support": "^0.5.13",
"test-console": "^1.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.3",
"vuepress": "^1.1.0"
},
"engines": {
"node": ">=8.0.0"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [],
"all": true
},
"dependencies": {
"app-root-path": "^2.2.1",
"common-types": "^1.12.9",
"handlebars": "^4.4.2",
"wait-in-parallel": "^1.2.6"
}
}