-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 899 Bytes
/
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
{
"name": "aliaz",
"version": "0.0.0",
"main": "src/index.js",
"license": "MIT",
"description": "Zero Config Universal Alias Support for Node",
"repository": "[email protected]:blindmedia/aliaz.git",
"contributes": [
{
"name": "Pooya Parsa <[email protected]>"
}
],
"scripts": {
"lint": "eslint src",
"test": "npm run lint && npm run jest",
"jest": "jest",
"release": "standard-version && git push --follow-tags && npm publish",
"prepare": "npm run test"
},
"files": [
"src"
],
"devDependencies": {
"codecov": "^3.1.0",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.6.0",
"standard-version": "^4.4.0"
}
}