UNPKG

1.44 kBJSONView Raw
1{
2 "name": "sass-formatter",
3 "version": "0.7.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 "postpublish": "curl -X POST -d {} https://api.netlify.com/build_hooks/60100b58cf7f871b9e91cca8",
11 "test": "jest --coverage",
12 "test:clear": "jest --clearCache",
13 "test:watch": "jest --watch --coverage"
14 },
15 "files": [
16 "dist",
17 "README.md"
18 ],
19 "keywords": [
20 "sass",
21 "formatter"
22 ],
23 "author": "Syler",
24 "license": "MIT",
25 "devDependencies": {
26 "@types/jest": "^26.0.20",
27 "del-cli": "^3.0.1",
28 "jest": "^26.6.3",
29 "jest-store-log": "^1.3.0",
30 "known-css-properties": "^0.20.0",
31 "nodemon": "^2.0.7",
32 "suf-cli": "^0.2.4",
33 "ts-jest": "^26.4.4",
34 "ts-node": "^9.1.1",
35 "tslib": "^2.1.0",
36 "typescript": "^4.1.3"
37 },
38 "dependencies": {
39 "suf-log": "^2.5.3",
40 "suf-regex": "^0.3.2"
41 },
42 "repository": {
43 "type": "git",
44 "url": "https://github.com/TheRealSyler/sass-formatter"
45 },
46 "jest": {
47 "moduleFileExtensions": [
48 "ts",
49 "tsx",
50 "js",
51 "json",
52 "jsx",
53 "node"
54 ],
55 "roots": [
56 "<rootDir>/src"
57 ],
58 "coveragePathIgnorePatterns": [
59 "<rootDir>/src/logger.ts",
60 "/node_modules/"
61 ],
62 "transform": {
63 "^.+\\.tsx?$": "ts-jest"
64 }
65 }
66}