-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "clod",
"version": "0.2.5",
"description": "Utility library for JavaScript with basic functions.",
"main": "clod.js",
"module": "clod.js",
"author": "Bojan Mazej <[email protected]>",
"license": "ISC",
"jest": {
"verbose": true
},
"keywords": [
"clod",
"utils",
"utilities",
"functional",
"server",
"client",
"browser",
"modules",
"toolkit"
],
"scripts": {
"lint": "eslint source/*.js test/*.js",
"build": "yarn build:umd && yarn build:umd:min",
"build:umd": "rollup -c -o clod.js",
"build:umd:min": "rollup --config rollup.config.prod.js -o clod.min.js",
"test": "yarn lint && yarn test:node",
"test:node": "yarn build && yarn test:only",
"test:only": "jest",
"test:file": "jest test/misc.test.js",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.1.0",
"jest": "^26.0.1",
"rollup": "^2.13.1",
"rollup-plugin-terser": "^6.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bojangles-m/clod.git"
},
"bugs": {
"url": "https://github.com/bojangles-m/clod/issues"
},
"homepage": "https://github.com/bojangles-m/clod#readme"
}