-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.17 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
{
"name": "nvl",
"version": "1.3.0",
"description": "Replace a blank value with fallback value.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "rimraf dist/",
"build": "tsc",
"lint": "tslint -p .",
"pretest": "npm run build",
"test": "npm run lint && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gluons/NVL.git"
},
"keywords": [
"nvl",
"null",
"undefined"
],
"author": "Saran Tanpituckpong <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gluons/NVL/issues"
},
"homepage": "https://github.com/gluons/NVL",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^24.0.15",
"@types/node": "10",
"babel-jest": "^26.5.2",
"jest": "^26.5.3",
"mocha": "8.1.3",
"rimraf": "^3.0.2",
"tsconfig-gluons": "^1.1.0",
"tslint": "^6.1.3",
"tslint-config-gluons": "^2.2.0",
"typescript": "^4.0.3"
}
}