-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 971 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
31
32
33
34
35
36
37
38
{
"name": "dns-tool-embed",
"version": "1.0.0",
"description": "A portable, embeddable version of the DO Community DNS Lookup tool.",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": "20.9.0"
},
"main": "src/index.js",
"publishConfig": {
"source": "src/index.js",
"main": "build/bundle.js"
},
"scripts": {
"build": "microbundle -f umd -o build/bundle.js --no-pkg-main",
"watch": "npm run build -- watch",
"test": "eslint 'src/**/*.js'",
"test:fix": "npm run test -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/do-community/dns-tool-embed.git"
},
"keywords": [
"dns"
],
"author": "DigitalOcean",
"bugs": {
"url": "https://github.com/do-community/dns-tool-embed/issues"
},
"homepage": "https://github.com/do-community/dns-tool-embed#readme",
"devDependencies": {
"eslint": "^8.46.0",
"microbundle": "^0.15.1"
},
"dependencies": {}
}