-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.26 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
51
{
"name": "@sthima/bling",
"version": "0.0.6",
"description": "A lib to help with Bling NF integration",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Daniel R. Beckert <drbeckert@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"start": "nodemon",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src/*",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sthima/bling.git"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-node": "^8.10.1",
"typescript": "^3.9.2"
},
"dependencies": {
"ajv": "^6.12.6",
"axios": "^0.21.1",
"date-fns": "^2.13.0",
"typescript-json-validator": "^2.4.2",
"xml-js": "^1.6.11"
},
"keywords": [
"sthima",
"bling",
"nf"
]
}