-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.9 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
58
59
60
61
62
63
64
{
"name": "@muban/test-utils",
"version": "1.0.0-alpha.2",
"description": "Utils for testing with Muban Components",
"keywords": [
"muban",
"test",
"utils",
"jest"
],
"repository": "[email protected]:muban/muban-test-utils.git",
"author": "Arjan van Wijk <[email protected]>",
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"types": "./dist/esm/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"build": "npm-run-all -s clean build:*",
"build:ts-cjs": "tsc -p ./tsconfig.build.cjs.json",
"build:ts-esm": "tsc -p ./tsconfig.build.esm.json",
"clean": "npm-run-all clean:*",
"clean:test": "shx rm -rf coverage .nyc_output",
"clean:npm": "shx rm -rf dist",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src",
"test": "jest ./src/",
"check-types": "tsc --project tsconfig.json --noEmit --noUnusedLocals",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@muban/muban": "^1.0.0-alpha.33",
"nanoid": "^3.1.31"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime-corejs3": "^7.12.5",
"@mediamonks/eslint-config-base": "^2.0.0-alpha.5",
"@types/jest": "^27.4.0",
"babel-jest": "^27.4.6",
"jest": "^27.4.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"shx": "^0.3.4",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
}
}