-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.29 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
{
"name": "loopback-build-model-helper",
"version": "1.2.0",
"description": "A simple helper to build loopback models in ES7 but that no collides with remote methods.",
"main": "dist/index.js",
"repository": "https://github.com/garusis/loopback-build-model-helper",
"author": "Marcos J. Alvarez <[email protected]>",
"license": "MIT",
"keywords": [
"tool",
"util",
"debug",
"loopback"
],
"scripts": {
"build": "gulp build && git add -A && git commit --amend --no-edit",
"preversion": "yarn run build",
"git-push": "git push origin master --force && git push --follow-tags",
"release": "npm publish && yarn run git-push",
"patch-release": "npm version patch && npm run release",
"minor-release": "npm version minor && npm run release",
"major-release": "npm version major && npm run release"
},
"dependencies": {
"babel-runtime": "^6.22.0",
"bluebird": "^3.4.7",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.22.2",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"del": "^2.2.2",
"eslint": "^3.14.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-sourcemaps": "^2.4.0",
"merge-stream": "^1.0.1",
"run-sequence": "^1.2.2"
}
}