-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.03 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.03 KB
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
{
"name": "utjs",
"version": "4.0.0",
"description": "utjs is a high performance library with some common functions like sort, concatArrays, randomString, stringToNumber, etc.",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"test": "mocha test/*.js",
"test:cover": "nyc --reporter=lcov --reporter=text-summary npm test",
"benchmark": "node benchmark/index.js",
"lint": "eslint index.js lib/*.js test/*.js benchmark/*.js",
"lint:fix": "eslint index.js lib/*.js test/*.js benchmark/*.js --fix",
"check": "npm test && npm run lint && npm outdated",
"doc": "jsdoc ./lib/ ./package.json ./README.md -d ./doc"
},
"author": "Alejandro Santiago Nieto",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.0",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"jsdoc": "^4.0.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/alemures/utjs"
}
}