-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "destructure-promise",
"version": "0.0.5",
"description": "",
"main": "dist/index.js",
"module": "src/index.js",
"scripts": {
"test": "run-s test:jest test:stryker",
"test:jest": "jest --coverage",
"test:stryker": "stryker run",
"analyze": "sonar-scanner -Dsonar.login=${SONAR_TOKEN}",
"rollup": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JordanSinko/destructure-promise.git"
},
"files": [
"dist",
"src"
],
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/JordanSinko/destructure-promise/issues"
},
"homepage": "https://github.com/JordanSinko/destructure-promise#readme",
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@stryker-mutator/babel-transpiler": "^1.0.2",
"@stryker-mutator/core": "^1.0.2",
"@stryker-mutator/javascript-mutator": "^1.0.2",
"@stryker-mutator/jest-runner": "^1.0.2",
"@types/jest": "^24.0.5",
"@types/node": "^11.9.4",
"esm": "^3.2.5",
"jest": "^24.1.0",
"npm-run-all": "^4.1.5",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-terser": "^4.0.4",
"sonarqube-scanner": "^2.2.0"
}
}