UNPKG

1.3 kBJSONView Raw
1{
2 "name": "sass-formatter",
3 "version": "0.5.1",
4 "description": "typescript sass formatter",
5 "main": "dist/index.js",
6 "scripts": {
7 "prepack": "jest && del ./dist && npm run build && suf",
8 "build": "tsc -b",
9 "watch": "tsc -w",
10 "test": "jest --coverage",
11 "test:watch": "jest --watch --coverage"
12 },
13 "files": [
14 "dist",
15 "README.md"
16 ],
17 "keywords": [
18 "sass",
19 "formatter"
20 ],
21 "author": "Syler",
22 "license": "MIT",
23 "devDependencies": {
24 "@types/jest": "^24.0.18",
25 "del-cli": "^3.0.0",
26 "jest": "^24.9.0",
27 "jest-store-log": "^1.0.0",
28 "known-css-properties": "^0.18.0",
29 "nodemon": "^2.0.2",
30 "suf-cli": "^0.1.3",
31 "ts-jest": "^24.1.0",
32 "ts-node": "^8.6.2",
33 "typescript": "^4.0.3"
34 },
35 "dependencies": {
36 "@sorg/log": "^2.0.1",
37 "suf-regex": "^0.0.25",
38 "tslib": "^1.10.0"
39 },
40 "repository": {
41 "type": "git",
42 "url": "https://github.com/TheRealSyler/sass-formatter"
43 },
44 "jest": {
45 "moduleFileExtensions": [
46 "ts",
47 "tsx",
48 "js",
49 "json",
50 "jsx",
51 "node"
52 ],
53 "roots": [
54 "<rootDir>/src"
55 ],
56 "coveragePathIgnorePatterns": [
57 "<rootDir>/src/logger.ts",
58 "/node_modules/"
59 ],
60 "transform": {
61 "^.+\\.tsx?$": "ts-jest"
62 }
63 }
64}