-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.41 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
{
"name": "nfc-jsclient",
"version": "1.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/taglme/nfc-jsclient.git",
"author": "taglme <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"build-example": "webpack --config example/webpack.config.js",
"lint": "eslint ./src --ext ts",
"test": "jest --passWithNoTests",
"serve-example": "npx http-server ./dist/example",
"example": "yarn && yarn build && yarn build-example && yarn serve-example "
},
"dependencies": {
"@types/node": "^13.7.7",
"axios": "^0.19.2",
"buffer": "^5.4.3",
"lodash": "^4.17.15",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/jest": "^25.1.3",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.1.0",
"jest-mock-axios": "^3.2.0",
"jest-websocket-mock": "^2.0.2",
"mock-socket": "^9.0.3",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"files": ["dist"]
}