-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 998 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 998 Bytes
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": "comroconbu",
"version": "0.3.0",
"description": "Common Rollup configuration builder",
"homepage": "https://github.com/KennethTrecy/comroconbu",
"license": "MIT",
"private": "true",
"main": "dist/index.js",
"scripts": {
"prepare": "husky install",
"dev": "npm run development",
"development": "npx rollup -c",
"watch": "npx rollup -c --watch",
"prod": "npm run production",
"production": "npx rollup -c",
"test:unit": "npx mocha src/**/*.spec.js src/*.spec.js",
"test:watch_unit": "npx mocha src/**/*.spec.js src/*.spec.js --watch"
},
"author": "Kenneth Trecy Tobias <web.kennethtobias@gmail.com>",
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"chai": "^4.3.7",
"changelogen": "^0.4.0",
"eslint": "^8.30.0",
"husky": "^8.0.0",
"mocha": "^10.2.0",
"rollup": "^2.56.2",
"typescript": "^4.9.4"
}
}