-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.69 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
56
57
{
"name": "multerator",
"version": "0.11.0",
"license": "MIT",
"author": "Dor Shtaif <dorshtaif@gmail.com>",
"repository": "https://github.com/shtaif/multerator",
"engineStrict": true,
"sideEffects": false,
"engines": {
"node": ">=10.21.0"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"test": "ts-mocha -p ./tsconfig-cjs.json",
"release": "./scripts/release.sh",
"code-check": "prettier --check \"./src/**/*.{ts,js}\" && eslint ./src --cache && yarn run test --type-check && tsc --noEmit",
"build": "rm -rf ./dist && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && node ./scripts/mark-dist-dirs-package-module-type.js",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/chai-subset": "^1.3.3",
"@types/mocha": "^8.2.3",
"@types/node": "^16.3.3",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"dedent": "^0.7.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^8.1.3",
"prettier": "^2.3.2",
"release": "^6.3.0",
"sinon": "^14.0.0",
"standard-version": "^9.3.1",
"ts-mocha": "^8.0.0",
"typescript": "^4.8.4"
}
}