This repository was archived by the owner on Feb 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.63 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.63 KB
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
81
82
83
84
85
86
87
{
"name": "file-binders",
"version": "0.3.13",
"scripts": {
"test": "npm run cover && npm run lint",
"cover": "babel-node node_modules/.bin/babel-istanbul cover test/index.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"unit": "babel-node test/index.js",
"upgrade": "ncu --upgradeAll && npm install",
"lint": "eslint ./test ./src",
"compile-npm": "babel src -d .",
"bundle": "webpack --mode=production",
"release-npm": "npm run compile-npm && npm publish",
"release-bundle": "rimraf bundle && deploy-to-git",
"release": "npm run release-bundle && npm run release-npm",
"commit": "git-cz",
"reinstall": "rm -rf node_modules package-lock.json && npm i",
"patch": "npm run unit && npm version patch && npm run release && git push && git push --tags",
"minor": "npm run unit && npm version minor && npm run release && git push && git push --tags"
},
"config": {
"deployToGit": {
"repository": "git@github.com:defijs/file-binders.git",
"branch": "gh-pages",
"folder": "bundle",
"script": "npm run bundle",
"commit": "$npm_package_version",
"user": {
"email": "andrey.a.gubanov@gmail.com",
"name": "Andrey Gubanov (his digital clone)"
}
},
"commitizen": {
"path": "cz-simple-conventional-changelog"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"refactor",
"perf",
"test",
"chore",
"revert"
]
},
"ghooks": {
"commit-msg": "validate-commit-msg"
}
},
"repository": {
"type": "git",
"url": "https://github.com/defijs/file-binders.git"
},
"author": "Andrey Gubanov",
"license": "MIT",
"bugs": {
"url": "https://github.com/defijs/file-binders/issues"
},
"homepage": "https://github.com/defijs/file-binders#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-istanbul": "^0.12.2",
"babel-loader": "^8.0.5",
"commitizen": "^3.0.5",
"coveralls": "^3.0.2",
"cz-simple-conventional-changelog": "0.0.1",
"defi": "^0.0.29",
"deploy-to-git": "0.1.5",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"ghooks": "^2.0.4",
"jasmine": "^3.3.1",
"jsdom": "^13.1.0",
"makeelement": "0.0.4",
"ncp": "^2.0.0",
"npm-check-updates": "^2.15.0",
"rimraf": "^2.6.3",
"validate-commit-msg": "^2.14.0",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1"
}
}