-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 984 Bytes
/
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
{
"name": "@prismamedia/ts-module-loader",
"license": "MIT",
"private": false,
"contributors": [
"Yvann Boucher <yvann.boucher@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/prismamedia/ts-module-loader"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/types/index.d.ts",
"scripts": {
"build": "tsc --build tsconfig.json tsconfig.esm.json",
"build:watch": "yarn run build --watch",
"build:clean": "yarn run build --clean",
"clean": "git clean -dfqX -- .",
"test": "NODE_ENV=test jest --detectOpenHandles --forceExit --verbose --passWithNoTests",
"test:watch": "yarn run test --watchAll",
"prettier": "prettier --write \"**/*.ts\""
},
"engines": {
"node": ">=12"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.2",
"jest": "^25.1.0",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
}
}