-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "firevuex",
"version": "0.3.0",
"description": "Binding between firebase and vuex",
"main": "dist/index.js",
"files": [
"dist/**",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Granipouss/firevuex.git"
},
"scripts": {
"lint": "eslint src examples tests",
"test:unit": "jasmine JASMINE_CONFIG_PATH=tests/unit/jasmine.json",
"test": "npm run lint && npm run test:unit",
"dev": "webpack src/index.js dist/index.js --watch --output-library=FireVuex --output-library-target=umd",
"build": "webpack src/index.js dist/index.js --output-library=FireVuex --output-library-target=umd",
"publish": "np"
},
"author": "Brendan <[email protected]>",
"license": "MIT",
"keywords": [
"vue",
"vuex",
"store",
"firebase",
"fire",
"bind",
"sync"
],
"bugs": {
"url": "https://github.com/Granipouss/firevuex/issues"
},
"homepage": "https://github.com/Granipouss/firevuex#readme",
"devDependencies": {
"eslint": "^2.5.1",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-html": "^1.4.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"jasmine": "^2.5.2",
"np": "^2.12.0",
"webpack": "^1.14.0"
}
}