-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.74 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
{
"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 <[email protected]>",
"version": "2.0.2",
"sideEffects": false,
"files": [
"dist/"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"devDependencies": {
"@rollup/plugin-typescript": "11.1.1",
"@simpleview/eslint-config-dms": "0.0.7",
"@tsconfig/node16": "1.0.4",
"@types/mocha": "10.0.0",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "5.39.0",
"@typescript-eslint/parser": "5.39.0",
"eslint": "8.12.0",
"eslint-plugin-react": "7.31.1",
"eslint-plugin-react-hooks": "4.6.0",
"mocha": "*",
"rollup": "3.22.0",
"ts-node": "10.9.1",
"tslib": "2.5.1",
"typescript": "5.0.4"
},
"engines": {
"node": ">=0.10.x"
},
"scripts": {
"build": "yarn run build:cjs && yarn run build:amd && 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",
"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"
}