-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.58 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.58 KB
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
65
66
{
"name": "@algorithmwatch/schaufel-ab",
"version": "0.3.2",
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/schaufel-ab.cjs",
"default": "./dist/schaufel-ab.modern.js"
},
"main": "./dist/schaufel-ab.cjs",
"module": "./dist/schaufel-ab.module.js",
"unpkg": "./dist/schaufel-ab.umd.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/algorithmwatch/schaufel-ab.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"author": "AlgorithmWatch",
"license": "MIT",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"test": "jest",
"test:dev": "jest --watchAll"
},
"dependencies": {
"@msgpack/msgpack": "^2.7.2",
"jsonschema-key-compression": "^1.6.1"
},
"devDependencies": {
"@types/cheerio": "^0.22.27",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.182",
"@types/node": "^14.14.33",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest": "^24.2.1",
"jest": "^26.6.3",
"microbundle": "^0.14.2",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"ts-node": "^10.9.1",
"typescript": "^4.2.3"
},
"prettier": {
"overrides": [
{
"files": [
".prettierrc",
".babelrc",
".eslintrc"
],
"options": {
"parser": "json"
}
}
],
"singleQuote": true,
"trailingComma": "all"
}
}