-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "firestore-service",
"version": "1.0.9",
"description": "Create firestore queries with simple HTTP methods",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "jest --forceExit --coverage --detectOpenHandles",
"build": "webpack",
"prepublishOnly": "npm run build",
"lint": "find ./src -name \\**.js | xargs ./node_modules/eslint/bin/eslint.js",
"precommit": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wolox/firestore-service.git"
},
"author": "Lucas Zibell <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Wolox/firestore-service/issues"
},
"homepage": "https://github.com/Wolox/firestore-service#readme",
"dependencies": {
"eslint": "^5.9.0",
"firebase": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.55",
"@babel/plugin-transform-spread": "^7.0.0-beta.55",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.2.0",
"babel-loader": "^7.1.5",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"dotenv": "^6.0.0",
"eslint-config-wolox": "^2.2.2",
"husky": "^1.2.0",
"jest": "^23.2.0",
"module-resolver": "^1.0.0",
"transform-runtime": "0.0.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.3",
"webpack-cli": "^3.0.8"
},
"env": {
"jest/globals": true
},
"jest": {
"testURL": "http://localhost/",
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
]
},
"husky": {
"hooks": {
"pre-commit": "npm test && npm run lint"
}
}
}