-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 869 Bytes
/
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
{
"name": "@cfware/decamelize",
"version": "1.0.0",
"description": "ES Module fork of decamelize",
"type": "module",
"main": "decamelize.js",
"exports": "./decamelize.js",
"scripts": {
"pretest": "cfware-lint .",
"tests-only": "nyc -s node --experimental-loader=@istanbuljs/esm-loader-hook test.js",
"test": "npm run -s tests-only",
"posttest": "nyc report --check-coverage"
},
"engines": {
"node": ">=18"
},
"author": "Corey Farrell",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cfware/decamelize.git"
},
"bugs": {
"url": "https://github.com/cfware/decamelize/issues"
},
"homepage": "https://github.com/cfware/decamelize#readme",
"dependencies": {},
"devDependencies": {
"@cfware/lint": "^4",
"@cfware/nyc": "^1",
"@istanbuljs/esm-loader-hook": "^0.2",
"libtap": "^1",
"nyc": "^15"
}
}