-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.74 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.74 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
48
49
50
51
52
53
{
"name": "goatee",
"description": "Powerful yet simple templating system with Mustache style syntax and many more features. Works in node and browser with requirejs.",
"author": "Owen Allen <owenallenaz@gmail.com>",
"version": "2.0.2",
"sideEffects": false,
"files": [
"dist/"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"devDependencies": {
"@simpleview/eslint-config-dms": "2.0.3",
"@tsconfig/node16": "16.1.3",
"@types/mocha": "10.0.0",
"@types/node": "^20.0.0",
"eslint": "9.12.0",
"mocha": "10.2.0",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"resolutions": {
"nanoid": "3.3.8"
},
"engines": {
"node": ">=16.18.0"
},
"scripts": {
"build": "yarn run build:cjs && yarn run build:types",
"build:amd": "rm -rf ./dist/amd && rollup --config rollup.config.ts --configPlugin typescript",
"build:cjs": "rm -rf ./dist/cjs && tsc --project ./tsconfig.cjs.json",
"build:esm": "rm -rf ./dist/esm && tsc --project ./tsconfig.esm.json",
"build:types": "rm -rf ./dist/types && tsc --project ./tsconfig.types.json",
"install:host": "npm install -f --package-lock false",
"docker": "./src/scripts/run || true",
"publish": "./src/scripts/publish",
"style": "eslint .",
"style:fix": "eslint . --fix",
"sync-state": "bash ./src/scripts/sync-state",
"test": "mocha --require ts-node/register 'src/**/*.test.ts' --check-leaks --timeout 5000",
"types": "tsc -p tsconfig.json --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/simpleviewinc/goatee.git"
},
"license": "MIT",
"packageManager": "yarn@4.2.2+sha512.c44e283c54e02de9d1da8687025b030078c1b9648d2895a65aab8e64225bfb7becba87e1809fc0b4b6778bbd47a1e2ab6ac647de4c5e383a53a7c17db6c3ff4b"
}