-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
30 lines (30 loc) · 850 Bytes
/
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
{
"name": "modulejs",
"version": "2.11.0",
"description": "Lightweight JavaScript module system.",
"author": "Lars Jung <[email protected]> (https://larsjung.de)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lrsjng/modulejs.git"
},
"main": "dist/modulejs.js",
"scripts": {
"lint": "eslint .",
"test": "node test",
"check": "npm run -s lint && npm run -s test",
"cover": "nyc --require @babel/register --reporter text --reporter html node test",
"build": "node ghu release",
"precommit": "npm run -s check && npm run -s build"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/register": "7.25.9",
"eslint": "9.14.0",
"ghu": "0.28.5",
"globals": "15.12.0",
"nyc": "17.1.0",
"scar": "2.3.4"
}
}