-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
65 lines (65 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "parse-mockdb",
"version": "0.4.0",
"description": "Parse JS SDK Mocked Database",
"main": "src/parse-mockdb.js",
"engines": {
"node": ">=5.0.0"
},
"scripts": {
"test": "npm run lint && mocha ./test/test",
"lint": "eslint src/** test/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hustle/parse-mockdb.git"
},
"keywords": [
"parse",
"parsesdk",
"mock",
"unit-testing"
],
"author": "Tyler Brock, Roddy Lindsay",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hustle/parse-mockdb/issues"
},
"homepage": "https://github.com/Hustle/parse-mockdb",
"dependencies": {
"lodash": "^4.17.11"
},
"devDependencies": {
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.2.0",
"mocha": "^2.2.5",
"parse": "^2.0.0"
},
"directories": {
"test": "test"
},
"eslintConfig": {
"extends": "airbnb",
"parserOptions": {
"ecmaVersion": 5
},
"env": {
"node": true,
"mocha": true
},
"rules": {
"no-param-reassign": "off",
"no-underscore-dangle": "off",
"no-console": "off",
"new-cap": "off",
"strict": "off",
"prefer-rest-params": "off"
}
},
"peerDependencies": {
"parse": "^2.0.0"
}
}