-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "carret",
"version": "1.0.4",
"description": "The collections of lightweight utilities to make your life easier.",
"type": "module",
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"exports": "./dist/index.modern.js",
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && microbundle",
"test:build": "rimraf dist && microbundle -i src/index.ts -o dist/index.cjs -f commonjs",
"test": "npm run test:build && jest --ci --coverage && codecov",
"local:test": "npm run test:build && jest --verbose --coverage",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lamualfa/carret.git"
},
"keywords": [
"utilities",
"lightweight",
"fast",
"agnostic",
"charset",
"random",
"shuffle",
"generator"
],
"author": "Laode Muhammad Al Fatih",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/lamualfa/carret/issues"
},
"homepage": "https://github.com/lamualfa/carret#readme",
"devDependencies": {
"codecov": "^3.8.1",
"jest": "^26.6.3",
"microbundle": "^0.13.3",
"rimraf": "^3.0.2"
}
}