-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 809 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 809 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
35
{
"name": "nullables",
"version": "1.0.2",
"repository": "https://github.com/mongo-ts/nullables",
"author": "Alistair Smith <alistairsmith01@gmail.com>",
"license": "MIT",
"scripts": {
"test": "eslint . --fix&&jest",
"prepublishOnly": "npm run test&&npm run build",
"build": "tsc"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"files": [
"package.json",
"readme.md",
"dist"
],
"prettier": {
"printWidth": 120
},
"dependencies": {
"tslib": "^2.1.0",
"reflect-metadata": "^0.1.13"
}
}