-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.1 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
73
74
75
{
"name": "@vanillaes/absurdum",
"version": "2.0.3",
"description": "Absurdum - The Ridiculous Application of Reduce",
"keywords": [
"esm",
"esmodules",
"functional-programming",
"operators",
"lodash"
],
"contributors": [
{
"name": "Evan Plaice",
"email": "[email protected]",
"url": "https://evanplaice.com"
},
{
"name": "Jens Kristian Vyff",
"email": "[email protected]",
"url": "https://www.vyff.com"
}
],
"repository": "https://github.com/vanillaes/absurdum",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./index.js",
"browser": "./index.min.js"
},
"./arrays": {
"import": "./src/arrays/index.js"
},
"./objects": {
"import": "./src/objects/index.js"
},
"./strings": {
"import": "./src/strings/index.js"
}
},
"types": "index.d.ts",
"scripts": {
"test": "tape-es",
"test:watch": "tape-watch-es",
"lint": "esmtk lint",
"types": "npx -p typescript tsc index.js -t esnext --allowJS --checkJS --skipLibCheck --noEmit",
"build": "npm run build:min && npm run build:docs && npm run build:typings",
"build:docs": "node .config/docs.config.js",
"build:min": "esmtk minify index.js index.min.js",
"build:typings": "npx -p typescript tsc index.js -t esnext --allowJS --checkJS --skipLibCheck --declaration --emitDeclarationOnly --noEmitOnError",
"clean": "npm run clean:docs && npm run clean:builds && npm run clean:typings",
"clean:docs": "npx rimraf docs/**/*.md",
"clean:builds": "npx rimraf index.min.js",
"clean:typings": "npx rimraf src/**/*.d.ts",
"package": "npx rimraf package && npm pack | tail -n 1 | xargs tar -xf",
"preversion": "npm test && npm run lint && npm run types",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"docdown": "github:evanplaice/docdown",
"esmtk": "^0.5.13",
"glob": "^7.2.0",
"tape-es": "^1.2.16"
},
"engines": {
"node": ">=14"
},
"standard": {
"ignore": [
"index.js",
"docs.config.js"
]
}
}