-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.35 KB
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
{
"name": "@js-telecortex-2/js-telecortex-2-util",
"version": "1.1.7",
"description": "A Util library for JS-Telecortex-2",
"author": "Moobase Labs",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"test": "jest --watch --coverage",
"test-ci": "jest --ci --coverage",
"coverage": "codecov",
"build": "yarn run babel src --out-dir lib --ignore \"**/*.test.js\"",
"test-package": "babel-node test-package.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Laserphile/JS-Telecortex-2-Util.git"
},
"bugs": {
"url": "https://github.com/Laserphile/JS-Telecortex-2-Util/issues"
},
"homepage": "https://github.com/Laserphile/JS-Telecortex-2-Util#readme",
"dependencies": {
"chalk": "^2.4.2",
"colorsys": "^1.0.22",
"lodash": "^4.17.20"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"codecov": "^3.5.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.5.0",
"jest": "^24.8.0",
"prettier": "^1.17.1"
},
"jest": {
"setupFiles": [
"<rootDir>/src/setupTests.js"
]
}
}