-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
57 lines (57 loc) · 1.61 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
{
"name": "node-sass-magic-importer-monorepo",
"version": "5.0.0",
"author": "Markus Oberlehner",
"homepage": "https://github.com/maoberlehner/node-sass-magic-importer",
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"publish": "npm run bootstrap && npm run build && lerna publish",
"start": "npm run watch",
"watch": "lerna run watch",
"build": "lerna run build",
"clean": "lerna run clean",
"benchmark": "node scripts/benchmark.js",
"lint": "tslint **/*.ts -e **/node_modules/** -e **/dist/**",
"coverage": "jest --coverage --maxWorkers=4",
"coveralls": "npm run coverage && cat coverage/lcov.info | coveralls",
"test": "jest"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/maoberlehner/node-sass-magic-importer"
},
"bugs": {
"url": "https://github.com/maoberlehner/node-sass-magic-importer/issues"
},
"devDependencies": {
"@avalanche/component-button": "^4.0.0-alpha.9",
"@avalanche/object-grid": "^4.0.0-alpha.17",
"@types/jest": "^26.0.14",
"@types/node-sass": "^4.11.1",
"bootstrap": "4.0.0-beta",
"coveralls": "^3.1.0",
"jest": "^26.5.2",
"lerna": "^3.22.1",
"node-sass": "^7.0.0",
"npm-check-updates": "^9.0.4",
"ts-jest": "^26.4.1",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
},
"jest": {
"coveragePathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)$"
}
}