-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.87 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
{
"name": "hues",
"version": "2.0.0",
"private": true,
"description": "A tool for naming and converting colors in CSS development",
"author": {
"name": "Leszek Pietrzak",
"email": "[email protected]"
},
"homepage": "https://hues.dev",
"repository": "https://github.com/magicznyleszek/hues.git",
"bugs": "https://github.com/magicznyleszek/hues/issues",
"license": "EUPL-1.2",
"scripts": {
"test": "jest && npm run test-syntax",
"test-syntax": "prettier --check source",
"test-watch": "jest --watchAll",
"start": "parcel -p 2038 source/index.html -d dev",
"build-app": "rm -rf public && parcel build source/index.html -d public --public-url ./ --no-cache && npm run copy-static-files",
"copy-static-files": "cp humans.txt LICENSE manifest.json robots.txt sitemap.xml source/favicons/hues-logo.svg public"
},
"devDependencies": {
"@types/jest": "^25.2.2",
"@vue/component-compiler-utils": "^3.0.0",
"jest": "^26.0.1",
"parcel-bundler": "^1.12.4",
"postcss": "^7.0.18",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"stylelint": "^11.0.0",
"ts-jest": "^26.0.0",
"typescript": "^3.9.2",
"vue-hot-reload-api": "^2.3.4",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"vue": "^2.6.10",
"vuex": "^3.1.1"
},
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
},
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"moduleNameMapper": {
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/file-mock.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js?|ts?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}