-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.11 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
77
{
"name": "entity-manager",
"version": "0.7.1",
"description": "Entity Manager for mongodb",
"main": "dist/index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nagucc/entity-manager.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/nagucc/entity-manager/issues"
},
"homepage": "https://github.com/nagucc/entity-manager#readme",
"jsnext:main": "index.es6.js",
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-runtime"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb/base",
"rules": {
"import/no-mutable-exports": 0
}
},
"dependencies": {
"babel-runtime": "^6.6.1",
"debug": "^2.6.0",
"mongo-use-collection": "^0.3.0",
"mongodb": "^2.2.16"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.8.0",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"del": "^2.2.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^2.4.5",
"rollup": "^0.26.2",
"rollup-plugin-babel": "^2.4.0",
"sinon": "^2.0.0-pre"
},
"scripts": {
"lint": "eslint src test tools",
"test": "mocha --compilers js:babel-register",
"test:watch": "mocha --compilers js:babel-register --reporter min --watch",
"test:cover": "babel-node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "node tools/build",
"prepublish": "npm run build",
"publish:docs": "easystatic deploy docs --repo kriasoft/babel-starter-kit",
"start": "easystatic start docs"
}
}