-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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": "bipbop-push",
"version": "1.0.16",
"description": "Gerenciamento de PUSH",
"main": "dist/index.js",
"browser": "dist/browser.js",
"repository": "git@github.com:bipbop/bipbop-push.git",
"author": "Lucas Fernando Amorim <lf.amorim@bipbop.com.br>",
"license": "MIT",
"scripts": {
"clear": "rimraf dist",
"compile": "tsc",
"test": "jest",
"prebuild": "npm run clear",
"build": "rollup -c",
"prepack": "npm run build"
},
"dependencies": {
"bipbop-webservice": "2.0.24",
"xpath": "^0.0.27",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/lodash": "^4.14.149",
"@types/node": "^13.9.3",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"prettier": "^2.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.1.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.26.0",
"ts-jest": "^26.1.1",
"typescript": "^3.8.3"
},
"files": [
"dist",
"src"
],
"types": "dist/index.d.ts"
}