-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
92 lines (92 loc) · 2.54 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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "scss-bundle",
"version": "3.1.2",
"description": "Bundling SCSS files to one bundled file.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"start": "node dist/cli/main.js",
"pretest": "tsc -p . --noEmit && eslint \"src/**/*.ts*\"",
"test": "npm run build-tests && jest",
"build-tests": "test-generator-cli"
},
"keywords": [
"scss",
"bundle",
"sass",
"node-sass"
],
"files": [
"dist",
"docs",
"*.js",
"!*.config.js"
],
"bin": {
"scss-bundle": "dist/cli/main.js"
},
"author": "ReactWay <dev@reactway.com> (https://github.com/reactway)",
"bugs": "https://github.com/reactway/scss-bundle/issues",
"repository": "reactway/scss-bundle",
"homepage": "https://github.com/reactway/scss-bundle",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.23",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"@reactway/eslint-config": "^1.0.0-alpha.2",
"eslint": "^6.7.2",
"typescript": "^3.7.3",
"@simplrjs/test-generator-cli": "^0.1.3",
"jest-junit": "^10.0.0"
},
"dependencies": {
"@types/archy": "^0.0.31",
"@types/debug": "^4.1.5",
"@types/fs-extra": "^8.0.1",
"@types/glob": "^7.1.1",
"@types/lodash.debounce": "^4.0.6",
"@types/sass": "^1.16.0",
"archy": "^1.0.0",
"chalk": "^3.0.0",
"chokidar": "^3.3.1",
"commander": "^4.0.1",
"fs-extra": "^8.1.0",
"globs": "^0.1.4",
"lodash.debounce": "^4.0.8",
"loglevel": "^1.6.6",
"loglevel-plugin-prefix": "^0.8.4",
"pretty-bytes": "^5.3.0",
"sass": "^1.23.7",
"tslib": "^1.10.0"
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"reporters": [
"default",
"jest-junit"
],
"collectCoverage": true,
"testRegex": "/__tests__/.*\\.(test|spec).(ts|tsx)$",
"moduleNameMapper": {
"@src/(.*)": "<rootDir>/src/$1"
},
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/__tests__/*",
"!src/index.ts",
"!src/cli/**/*"
],
"coverageReporters": [
"cobertura"
],
"globals": {
"ts-jest": {
"tsConfig": "./tests/tsconfig.json"
}
}
}
}