-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
54 lines (54 loc) · 1.48 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
{
"name": "mock-cloud-firestore",
"version": "0.12.0",
"description": "Mock library for Cloud Firestore",
"main": "lib/mock-cloud-firestore.js",
"module": "es/mock-cloud-firestore.js",
"files": [
"dist",
"es",
"lib",
"src"
],
"scripts": {
"clean": "rimraf dist es lib tmp",
"build": "rollup -c",
"lint": "eslint \"*.js\" \"src/**/*.js\"",
"qunit": "babel src --out-dir tmp && qunit tmp/**/*-test.js",
"test": "npm-run-all --continue-on-error lint qunit",
"prepare": "npm run clean && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikkopaderes/mock-cloud-firestore.git"
},
"keywords": [
"firebase",
"firestore",
"mock"
],
"author": "Mikko Paderes",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikkopaderes/mock-cloud-firestore/issues"
},
"homepage": "https://github.com/mikkopaderes/mock-cloud-firestore#readme",
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@rollup/plugin-babel": "^5.0.4",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-rmmmp": "^0.3.0",
"eslint-plugin-import": "^2.21.2",
"firebase": "^7.13.1",
"npm-run-all": "^4.1.5",
"qunit": "^2.10.0",
"rimraf": "^3.0.2",
"rollup": "^2.18.0",
"sinon": "^9.0.2"
}
}