-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 1.43 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": "realm-query",
"version": "0.0.6",
"description": "A query builder for realm.js",
"main": "./dist/realm-query.js",
"typings": "index.d.ts",
"scripts": {
"clean": "rm -rf ./dist ./realm-object-server ./io.izlab.realmquery*",
"compile": "tsc --project .",
"build": "npm run clean && npm run compile",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "mocha dist/*.test.js",
"coverage":
"npm run build && istanbul cover _mocha dist/*.test.js --report lcovonly -- -R spec",
"report": "codeclimate-test-reporter < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrphu3074/realm-query.git"
},
"keywords": [
"realm",
"realmjs",
"realm-query",
"query-builder",
"react-native",
"javascript"
],
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mrphu3074/realm-query/issues"
},
"homepage": "https://github.com/mrphu3074/realm-query#readme",
"devDependencies": {
"@types/chai": "^3.5.1",
"@types/lodash": "^4.14.63",
"@types/mocha": "^2.2.41",
"@types/realm": "^1.0.3",
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.4.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"realm": "^1.2.0",
"typescript": "^2.2.2"
},
"peerDependencies": {
"realm": "^1.2.0"
},
"dependencies": {
"lodash": "^4.17.4"
}
}