-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.15 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
{
"name": "@twogate/boilerplate",
"version": "1.2.2",
"description": "A tool that replaces any placeholder text in a input file in bulk.",
"main": "dist/index.js",
"bin": "bin/cli.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"test": "rm -fr test/tmp/* test/tmp2/* ; mocha --require ts-node/register --colors test/unit/**/*.ts test/unit/*.ts",
"e2e": "rm -fr test/tmp-e2e/* ; mocha --require ts-node/register --colors test/e2e/**/*.ts test/e2e/*.ts",
"dev": "ts-node src/main.ts",
"build": "tsc",
"prepack": "npm run test && npm run e2e"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.8",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/js-yaml": "^3.12.5",
"escape-string-regexp": "^4.0.0",
"js-yaml": "^3.14.0",
"mkdir-recursive": "^0.4.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git@github.com:twogate/boilerplate-cli.git"
}
}