-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.33 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
52
53
54
55
{
"author": {
"name": "Yehor Sergeenko",
"email": "yehor.sergeenko@gmail.com",
"url": "https://github.com/bricss"
},
"bugs": {
"url": "https://github.com/bricss/dopant/issues"
},
"description": "The aerogel-weight & dead-simple resource loader 🚚",
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/preset-env": "^7.25.4",
"@stylistic/eslint-plugin-js": "^2.7.2",
"c8": "^10.1.2",
"eslint": "^9.10.0",
"eslint-config-ultra-refined": "^3.2.5",
"mocha": "^10.7.3",
"playwright-chromium": "^1.47.0"
},
"engines": {
"node": ">=18.x"
},
"exports": {
"import": "./src/index.mjs",
"require": "./dist/index.js"
},
"files": [
"dist",
"src"
],
"homepage": "https://github.com/bricss/dopant#readme",
"keywords": [
"lightweight",
"loader",
"resource"
],
"license": "MIT",
"name": "dopant",
"repository": {
"type": "git",
"url": "git+https://github.com/bricss/dopant.git"
},
"scripts": {
"build": "rm -rf dist && npx babel src -d dist",
"lint": "eslint",
"prepack": "npm run build",
"pretest": "rm -rf coverage",
"test": "mocha --exit --recursive",
"test:cover": "npm test && c8 report --reporter=lcov --reporter=text"
},
"version": "4.0.6"
}