-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.43 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
{
"name": "mutton",
"version": "0.5.1",
"description": "A package for compiling and rendering simple mustache-like templates",
"main": "./dist/src/",
"module": "./dist/es6/src/",
"jsnext:main": "./dist/esnext/src/",
"types": "./dist/src/index.d.ts",
"repository": {
"url": "https://github.com/austinkelleher/mutton",
"type": "git"
},
"author": "Austin Kelleher, [email protected]",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 14.0.0"
},
"scripts": {
"compile-src-cjs": "tsc --declaration --declarationDir ./dist -p tsconfig-src-cjs.json",
"compile-src-es6": "tsc -p tsconfig-src-es6.json",
"compile-src-esnext": "tsc -p tsconfig-src-esnext.json",
"precompile-src": "rm -rf ./dist",
"compile-src": "yarn compile-src-cjs && yarn compile-src-es6 && yarn compile-src-esnext",
"lint": "tslint --format codeFrame --project tsconfig.json 'src/**/*.ts' 'test/**/*.ts'",
"pretest": "yarn lint",
"test": "jest",
"prebuild": "yarn test",
"build": "yarn compile-src",
"format-code": "prettier --write '**/*.[jt]s'"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "~10",
"husky": "^3.0.5",
"jest": "^24.9.0",
"lint-staged": "8.2.1",
"nodemon": "^1.19.4",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
}
}