-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 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
{
"name": "dexie-relationships",
"version": "1.2.11",
"description": "Dexie relationship plugin",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"directories": {
"test": "tests"
},
"peerDependencies": {
"dexie": "^2.0.0-beta.10"
},
"devDependencies": {
"buble": "^0.14.3",
"chai": "^3.5.0",
"dexie": "^2.0.0-beta.3",
"eslint": "^3.8.1",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^6.2.1",
"reify": "^0.4.4",
"rollup": "^0.37.0",
"rollup-plugin-buble": "^0.14.0",
"rollup-plugin-node-builtins": "^2.0.0",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-sourcemaps": "^0.4.1",
"rollup-plugin-uglify": "^1.0.1"
},
"scripts": {
"build": "./node_modules/.bin/rollup -c && ./node_modules/.bin/rollup -c rollup.minify.config.js",
"test": "npm run eslint && npm run mocha && cd test/browser && ../../node_modules/.bin/rollup -c",
"eslint": "./node_modules/.bin/eslint src",
"mocha": "./node_modules/.bin/mocha --require reify test",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ignasbernotas/dexie-relationships.git"
},
"keywords": [
"dexie",
"relationships",
"plugin"
],
"author": "Ignas Bernotas",
"license": "MIT",
"bugs": {
"url": "https://github.com/ignasbernotas/dexie-relationships/issues"
},
"homepage": "https://github.com/ignasbernotas/dexie-relationships#readme"
}