-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 916 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
{
"name": "allure2-js-commons",
"version": "1.2.0",
"description": "Common helper for writing report files for Allure 2",
"author": "Ilya Korobitsyn <mail@korobochka.org>",
"repository": "https://github.com/korobochka/allure2-js-commons",
"main": "./dist/index.js",
"typings": "./dist/declarations/",
"scripts": {
"compile": "tsc",
"clean": "rimraf ./dist",
"lint": "eslint ./src/**/*.ts ./index.ts",
"prepare": "npm run clean && npm run build",
"build": "npm run lint && npm run compile"
},
"license": "MIT",
"devDependencies": {
"@types/mkdirp": "^0.5.2",
"@types/node": "^10.5.5",
"@types/uuid": "^3.4.3",
"allure-commandline": "^2.7.0",
"eslint": "^5.2.0",
"eslint-plugin-typescript": "^0.12.0",
"rimraf": "^2.6.2",
"typescript": "^3.0.1",
"typescript-eslint-parser": "^17.0.1"
},
"dependencies": {
"mkdirp": "^0.5.1",
"properties": "^1.2.1",
"uuid": "^3.3.2"
}
}