forked from octobusjs/octobus-crud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.04 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
78
79
80
{
"name": "octobus-crud",
"version": "0.6.0",
"description": "Octobus CRUD generator",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --watch --coverage",
"prebuild": "rimraf dist",
"build": "babel src --copy-files --out-dir dist",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/makeen-project/octobus-crud.git"
},
"keywords": [
"octobus",
"CRUD"
],
"files": [
"dist",
"README.md"
],
"author": "Victor Zamfir <victor@makeen.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/makeen-project/octobus-crud/issues"
},
"homepage": "https://github.com/makeen-project/octobus-crud#readme",
"dependencies": {
"babel-runtime": "^6.6.1",
"joi": "10.2.2",
"lodash": "^4.11.1",
"octobus.js": "0.31.1",
"uuid": "3.0.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.6",
"babel-eslint": "5.0.0",
"babel-jest": "15.0.0",
"babel-plugin-transform-async-to-generator": "6.7.4",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-object-rest-spread": "6.6.5",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"eslint": "^2.3.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-react": "^4.2.0",
"estraverse-fb": "1.3.1",
"jest-cli": "15.1.0",
"rimraf": "2.5.2",
"semantic-release": "^4.3.5"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-object-rest-spread",
"transform-async-to-generator",
"transform-runtime",
"transform-decorators-legacy"
]
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/*.js"
]
}
}