-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.64 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
{
"name": "@unly/utils-slack",
"version": "1.0.2",
"description": "Library of tools to help and improve slack notifications",
"main": "lib/index.js",
"author": "unlyEd",
"license": "MIT",
"bugs": {
"url": "https://github.com/UnlyEd/utils-slack/issues"
},
"homepage": "https://github.com/UnlyEd/utils-slack#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/UnlyEd/utils-slack.git"
},
"files": [
"/lib",
"/API.md"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"collectCoverage": true,
"coverageReporters": [
"lcov"
]
},
"scripts": {
"start": "cross-env-shell 'concurrently -p '{name}' -n 'lint,build,test' -c 'gray.bgWhite,yellow.bgBlue,green.bgWhite' \"yarn lint\" \"yarn build\" \"yarn test\"'",
"build": "rollup -c -w",
"build:once": "rollup -c",
"clean": "rm -rf lib/",
"lint": "esw src/ --fix --watch",
"lint:once": "eslint src/ --fix",
"preversion": "yarn lint:once && yarn test:once && yarn doc:toc && yarn run doc:api",
"postversion": "git push && git push --tags",
"prepublishOnly": "yarn clean && yarn build:once && yarn publish:preview && cli-confirm \"Do you really want to release a new version? Please check the files that will be publicly released first.\"",
"publish:preview": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"release": "yarn bump --prompt --commit --tag --push",
"releaseAndPublish": "yarn release && npm publish",
"doc:api": "jsdoc2md src/*.js > API.md",
"doc:toc": "yarn markdown-toc --maxdepth 4 -i README.md",
"test": "NODE_ENV=test jest --watch",
"test:once": "NODE_ENV=test jest",
"test:coverage": "NODE_ENV=test jest --coverage"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/preset-env": "7.2.3",
"@unly/cli-confirm": "1.1.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "21.2.0",
"babel-loader": "8.0.5",
"babel-preset-es2015-rollup": "3.0.0",
"concurrently": "4.1.0",
"cross-env": "5.2.0",
"dotenv": "6.2.0",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14",
"eslint-watch": "4.0.2",
"jest": "21.2.1",
"jsdoc-to-markdown": "4.0.1",
"markdown-toc": "1.2.0",
"rollup": "1.1.2",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-commonjs": "9.2.0",
"rollup-plugin-node-resolve": "4.0.0",
"version-bump-prompt": "4.2.2",
"webpack": "3.12.0",
"winston": "3.2.0"
},
"dependencies": {
"axios": "0.18.0"
}
}