-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.13 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.13 KB
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
{
"name": "evl",
"version": "2.0.0",
"description": "Function fallback when error.",
"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 --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gluons/EVL.git"
},
"keywords": [
"evl",
"error",
"function",
"fallback"
],
"author": "Saran Tanpituckpong <sarunta@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gluons/EVL/issues"
},
"homepage": "https://github.com/gluons/EVL",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.15",
"@types/node": "10",
"jest": "^24.8.0",
"rimraf": "^2.6.3",
"tsconfig-gluons": "^1.0.1",
"tslint": "^5.18.0",
"tslint-config-gluons": "^2.1.0",
"typescript": "^3.5.3"
}
}