This repository has been 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
/
Copy pathpackage.json
94 lines (94 loc) · 2.77 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "codemirror-binder",
"version": "0.0.10",
"description": "CodeMirror binder for defi.js",
"main": "index.js",
"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 i",
"lint": "eslint ./test ./src.js ./webpack.config.js",
"compile-npm": "babel src.js --out-file index.js",
"bundle": "webpack --mode=production",
"prepublish": "npm run compile-npm",
"release-bundle": "rimraf bundle && deploy-to-git",
"commit": "git-cz",
"reinstall": "rm -rf node_modules package-lock.json && npm i",
"patch": "npm version patch && npm run release-bundle && npm publish && git push && git push --tags",
"minor": "npm version minor && npm run release-bundle && npm publish && git push && git push --tags"
},
"config": {
"deployToGit": {
"repository": "git@github.com:defijs/codemirror-binder.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",
"ci"
]
},
"ghooks": {
"commit-msg": "validate-commit-msg"
}
},
"repository": {
"type": "git",
"url": "https://github.com/defijs/codemirror-binder.git"
},
"keywords": [
"defijs",
"codemirror"
],
"author": "Andrey Gubanov",
"license": "MIT",
"bugs": {
"url": "https://github.com/defijs/codemirror-binder/issues"
},
"homepage": "https://github.com/defijs/codemirror-binder#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/cli": "^7.2.3",
"babel-istanbul": "^0.12.2",
"babel-loader": "^8.0.5",
"babel-core": "^7.0.0-bridge.0",
"@babel/preset-env": "^7.2.3",
"codemirror": "^5.42.2",
"conventional-changelog": "^3.0.5",
"coveralls": "^3.0.2",
"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",
"defi": "^0.0.29",
"npm-check-updates": "^2.15.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"validate-commit-msg": "^2.14.0",
"webpack": "^4.28.4",
"webpack-command": "^0.4.2"
},
"peerDependencies": {
"defi": "*"
}
}