forked from sindresorhus/node-module-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 518 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 518 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
{
"name": "the-module",
"version": "0.0.0",
"description": "My awesome module.",
"repository": "Richienb/the-module",
"author": {
"name": "Richie Bendall",
"email": "richiebendall@gmail.com"
},
"license": "MIT",
"type": "module",
"exports": "./index.js",
"files": [
"index.js",
"index.d.ts"
],
"engines": {
"node": ">=12"
},
"scripts": {
"test": "xo && ava && tsd"
},
"keywords": [],
"dependencies": {},
"devDependencies": {
"ava": "^3.15.0",
"tsd": "^0.17.0",
"xo": "^0.44.0"
}
}