-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "dechainer",
"version": "0.3.2",
"description": "Functional utilities.",
"keywords": [
"accessors",
"arithmetic",
"functional programming",
"iteration",
"predicates"
],
"homepage": "https://github.com/Stassi/dechainer#readme",
"license": "MIT",
"author": "Andreas Stassivik <andreas@stassi.net> (https://github.com/Stassi)",
"files": [
"lib",
"!lib/*.cjs.d*"
],
"main": "./lib/dechainer.cjs",
"type": "module",
"types": "./lib/dechainer.d.ts",
"exports": {
"import": "./lib/dechainer.mjs",
"require": "./lib/dechainer.cjs"
},
"repository": "github:Stassi/dechainer",
"scripts": {
"build": "rollup -c",
"coverage": "npm run test:unit -- --coverage",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"prepublishOnly": "npm run build",
"test": "npm run test:unit && npm run format:check && package-check",
"test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"@types/jest": "^27.0.1",
"jest": "^27.0.5",
"prettier": "2.5.0",
"rollup": "^2.56.3",
"rollup-plugin-ts": "^2.0.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
},
"engines": {
"node": "^12.22.7 || ^14.18.2 || ^16.13.1 || >=17.2.0",
"npm": "^6.14.15 || ^7.24.2 || >=8.2.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64"
],
"jest": {
"globals": {
"ts-jest": {
"useESM": true
}
},
"preset": "ts-jest/presets/default-esm"
},
"prettier": {
"endOfLine": "auto",
"semi": false,
"singleQuote": true
},
"sideEffects": false
}