-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.45 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.45 KB
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
{
"name": "@acrontum/fst",
"version": "0.1.3",
"repository": "https://github.com/acrontum/filesystem-template",
"description": "Filesystem templating engine and project scaffolding tool",
"main": "./dist/src/index.js",
"bin": {
"fst": "./dist/src/cli.js"
},
"scripts": {
"prepublishOnly": "git config core.hooksPath ./hooks",
"prebuild": "rm -rf dist",
"build": "tsc -p .",
"watch": "npm run build -- --watch --preserveWatchOutput",
"fmt": "prettier --write 'src/**/*.ts' 'test/*.ts'",
"link": "ln -s $PWD/dist/src/cli.js ./node_modules/.bin/fst && chmod +x node_modules/.bin/fst",
"pretest": "rm -rf .fst test-output; test -d dist || npm run build",
"test:unit": "npm run test -- --ignore '**/e2e.spec.js'",
"test": "FST_LOG=${FST_LOG:-error} NODE_ENV=test mocha -r source-map-support/register --recursive 'dist/test/**/*.spec.js'"
},
"files": [
"dist",
"readme.md",
"LICENSE"
],
"keywords": [],
"author": "p-mcgowan",
"license": "MIT",
"dependencies": {
"fdir": "5.1.0"
},
"devDependencies": {
"@acrontum/moxy": "^2.1.1",
"@tsconfig/node16": "^1.0.2",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.12",
"@types/sinon": "^10.0.2",
"@types/source-map-support": "^0.5.6",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"prettier": "^2.3.2",
"sinon": "^11.1.2",
"source-map-support": "^0.5.21",
"typescript": "^4.4.2"
}
}