forked from asd-xiv/m
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.81 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@asd14/m",
"version": "8.1.0",
"description": "Point free style, functional Javascript library with focus on object arrays",
"license": "MIT",
"homepage": "https://github.com/asd-xiv/m",
"repository": {
"type": "git",
"url": "git+https://github.com/asd-xiv/m.git"
},
"bugs": {
"url": "https://github.com/asd-xiv/m/issues"
},
"author": {
"name": "Andrei Dumitrescu",
"url": "https://github.com/andreidmt"
},
"contributors": [
{
"name": "David Gil",
"url": "https://github.com/dgilperez"
}
],
"keywords": [
"point-free",
"functional",
"javascript",
"library"
],
"type": "module",
"exports": "./dist/index.js",
"sideEffects": false,
"files": [
"/dist"
],
"scripts": {
"----UTIL": "",
"prepare": "git config --local core.hooksPath .githooks",
"setup": "npm ci --also=dev",
"update": "ncu --interactive",
"postupdate": "npm audit fix",
"format": "prettier --write --prose-wrap=always . && eslint --fix src",
"----BUNDLE": "",
"build.docs": "documentation build src/index.js --project-name m -f html -o docs -c documentation.yml",
"prebuild": "rm -rf dist",
"build": "swc src --out-dir dist",
"----LINT": "",
"lint.js": "eslint --quiet src",
"lint.md": "markdownlint '*.md'",
"lint": "npm run lint.js && npm run lint.md",
"----TEST": "",
"test": "tape -r swc-register 'src/**/*.test.js' 'src/*.test.js' | tap-nirvana",
"tdd": "nodemon --watch src --exec 'npm test'",
"precoverage": "rm -rf coverage",
"coverage": "c8 npm test && c8 report --reporter=text-lcov | coveralls",
"----PUBLISH": "",
"release": "semantic-release"
},
"lint-staged": {
"*.{js,json}": "eslint --quiet",
"*.md": "markdownlint --ignore CHANGELOG.md",
".circleci/config.yml": "circleci config validate"
},
"dependencies": {
"@swc/helpers": "^0.4.11",
"fast-deep-equal": "^3.1.3",
"rfc-3986": "^1.0.1"
},
"devDependencies": {
"@asd14/eslint-config": "^8.1.0",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.4",
"benchmark": "^2.1.4",
"c8": "^7.12.0",
"chi-squared-test": "^1.1.0",
"coveralls": "^3.1.1",
"documentation": "^14.0.0",
"eslint": "^8.24.0",
"lint-staged": "^13.0.3",
"lodash": "^4.17.21",
"markdownlint-cli": "^0.32.2",
"nodemon": "^2.0.20",
"npm-check-updates": "^16.3.4",
"prettier": "^2.7.1",
"pretty-error": "^4.0.0",
"ramda": "^0.28.0",
"semantic-release": "^19.0.5",
"swc-register": "^1.0.4",
"tap-nirvana": "^1.1.0",
"tape": "^5.6.1",
"underscore": "^1.13.6"
},
"engines": {
"node": ">=16.0.0"
}
}