-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.77 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
{
"name": "@nyxlang/string-utils",
"version": "0.0.14",
"description": "String manipulation and processing functions",
"main": "src/index.js",
"type": "module",
"homepage": "https://nyxlang.github.io/string-utils/",
"exports": {
".": {
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist/"
],
"scripts": {
"build": "rm -rf dist/ && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && node ./scripts/set-package-json.js",
"publish-package": "npm run build && npm run docs && git add . && git commit -m 'Publish to NPM' && git push && npm publish",
"test": "jest",
"test:all": "jest --all",
"test:watch": "jest --watch",
"test:changed": "jest --onlyChanged",
"docs": "rm -rf docs/* && jsdoc -c .jsdoc.json",
"prepare": "husky install",
"format": "prettier --write . && eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nyxlang/string-utils.git"
},
"keywords": [
"string",
"utilities"
],
"author": "Jason Barr <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nyxlang/string-utils/issues"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@babel/preset-env": "^7.13.15",
"babel-jest": "^26.6.3",
"eslint": "^7.24.0",
"eslint-plugin-jsdoc": "^32.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jsdoc": "^3.6.6",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typescript": "^4.2.4",
"voca": "^1.4.0"
},
"dependencies": {
"@nyxlang/helpers": "^0.1.1",
"unicode-default-word-boundary": "^13.0.0"
}
}