-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.51 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
{
"name": "@marianmeres/random-human-readable",
"version": "1.6.1",
"description": "Random human readable string generator",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"browser": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist/*",
"prettier": "prettier --write \"{src,tests}/**/*.{js,ts,json}\"",
"release": "release -v minor",
"test": "test-runner",
"test:watch": "nodemon -q -w dist -w tests -x test-runner --",
"build": "npm run clean && rollup -c",
"dev": "npm run clean && rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marianmeres/random-human-readable.git"
},
"author": "Marian Meres <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marianmeres/random-human-readable/issues"
},
"homepage": "https://github.com/marianmeres/random-human-readable#readme",
"devDependencies": {
"@marianmeres/clog": "^1.0.0",
"@marianmeres/release": "^1.0.0",
"@marianmeres/test-runner": "^2.0.13",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/node": "^18.13.0",
"nodemon": "^3.0.1",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"rollup": "^3.15.0",
"tslib": "^2.5.0"
}
}