This repository has been archived by the owner on Jul 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.11 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@nsoft/chameleon-sdk",
"version": "1.0.110",
"description": "Chameleon Software Development Kit",
"author": "Chameleon Team <[email protected]>",
"contributors": [
"Jadranko Dragoje <[email protected]>",
"Snježana Drežnjak <[email protected]>",
"Lana Džidić <[email protected]>",
"Macić Ahmet <[email protected]>"
],
"private": false,
"main": "./src/index.js",
"scripts": {
"build": "babel src --presets @babel/preset-env --out-dir dist --ignore src/**/*.spec.js,src/**/*.test.js",
"lint": "eslint --ext .js,.vue src",
"test": "npm run lint && jest",
"coverage": "npm test && codecov",
"prepare": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/nsftx/chameleon-sdk"
},
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"date-fns": "^2.9.0",
"lodash": "^4.17.15",
"vuex": "^3.1.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@vue/test-utils": "^1.0.0-beta.31",
"babel-jest": "^24.9.0",
"codecov": "^3.6.4",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.20.1",
"jest": "^24.9.0",
"jest-localstorage-mock": "^2.4.0",
"uuid": "^7.0.0",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageDirectory": "./test/coverage/",
"coverageReporters": [
"text",
"lcov",
"json"
],
"moduleNameMapper": {
"data/(.*)$": "<rootDir>/test/__data__/$1"
},
"moduleFileExtensions": [
"js",
"json"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
],
"setupFiles": [
"jest-localstorage-mock"
],
"testEnvironmentOptions": {
"resources": "usable"
},
"transform": {
"^.+\\.js$": "<rootDir>/test/jest.transform.js"
}
}
}