-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.41 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
{
"name": "operationkit",
"version": "0.2.3",
"description": "Ops",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"test": "jest --colors",
"test-recent": "jest --onlyChanged",
"test-last": "jest --lastCommit",
"test-watch": "jest --watchAll",
"test-coverage": "jest --coverage",
"test-help": "jest --help",
"compile": "tsc",
"lint": "eslint src --ext ts",
"build": "webpack --config webpack.config.js --colors --progress",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"docs": "documentation build src/** -f html -o jsdocs",
"docs:open": "documentation build src/** -f html -o jsdocs && open jsdocs/index.html"
},
"author": "Danny Yassine",
"license": "ISC",
"repository": "dannyYassine/operationkit",
"dependencies": {
"@babel/parser": "^7.7.7",
"@babel/types": "^7.7.4",
"@types/node": "^13.1.1",
"@types/uuid": "^3.4.6",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-promise": "^4.2.1",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"typescript-eslint-parser": "^22.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"axios": ">=0.18.1",
"coveralls": "^3.0.4",
"jest": "^24.8.0",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"documentation": "^11.0.1"
}
}