-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.46 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
{
"name": "@frontender-magazine/models",
"version": "1.2.0",
"description": "mongodb models",
"main": "lib/index.js",
"scripts": {
"postversion": "git push && git push --tags",
"version": "git add . -A",
"major": "npm version major && npm publish --tag latest --access public",
"minor": "npm version minor && npm publish --tag latest --access public",
"patch": "npm version patch && npm publish --tag latest --access public",
"dopreminor": "npm version preminor && npm publish --tag next --access public",
"dopremajor": "npm version premajor && npm publish --tag next --access public",
"doprepatch": "npm version prepatch && npm publish --tag next --access public",
"clean": "rimraf public lib",
"build": "npm run clean && babel source --minified -s true -d lib --ignore __tests__/**,__mocks__/** ",
"build:doc": "documentation build src/*.js* -o public -f html",
"lint": "eslint ./source/** --ext .js --color -f stylish --fix",
"minify": "babel-minify lib/*.js -d lib --removeConsole --removeDebugger",
"precommit": "git add . -A && lint-staged"
},
"lint-staged": {
"*.{jsx,js}": [
"eslint --color -f stylish --fix",
"git add . -A"
]
},
"repository": {
"type": "git",
"url": "[email protected]:TemplateMonster/PlasmaPlatform/Frontend/tm-amazon-rename.git"
},
"keywords": [
"fm",
"frontender magazine",
"models",
"mongoose"
],
"author": "Anton Nemtsev <[email protected]> (http://silentimp.info/)",
"license": "CC-BY-4.0",
"dependencies": {
"mongoose": "^5.8.11"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-export-default-from": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"acorn": "^7.1.0",
"babel-eslint": "^10.0.3",
"babel-minify": "^0.5.1",
"documentation": "^12.1.4",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.2",
"husky": "^4.2.1",
"lint-staged": "^10.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.1",
"typescript": "^3.7.5"
}
}