-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.95 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "jeggy-loki",
"version": "2.0.0",
"description": "Jeggy adapter for LokiJS",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "babel src --out-dir dist",
"clean": "rm -rf dist",
"cover": "isparta cover --report text --report html _mocha --include-all-sources --root src/ -- --compilers js:babel-core/register --require babel-polyfill --require ./test/index.js 'test/**/*.js'",
"lint-staged": "lint-staged",
"lint": "eslint ./",
"test": "mocha --reporter nyan --compilers js:babel-core/register --require babel-polyfill --require ./test/index.js 'test/**/*.js'",
"prepublish": "npm run clean && npm run build"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/davearata/jeggy-loki.git"
},
"keywords": [
"boilerplate",
"es6",
"node",
"starter",
"kit",
"transpile",
"6to5",
"babel"
],
"author": "Dave Arata <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/davearata/jeggy-loki/issues"
},
"homepage": "https://github.com/davearata/jeggy-loki",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.7.1",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^2.0.1",
"faker": "^3.1.0",
"isparta": "^4.0.0",
"lint-staged": "^3.0.3",
"mocha": "^3.1.2",
"mockery": "^2.0.0",
"pre-commit": "^1.1.3",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"co": "^4.6.0",
"jeggy": "^1.0.0",
"lodash": "^4.16.4",
"lokijs": "^1.5.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}