-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.04 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
{
"name": "scss-codemods",
"version": "0.1.2",
"description": "SCSS codemods written with postcss plugins",
"bin": {
"scss-codemods": "cli.js"
},
"scripts": {
"build": "npm run build:js",
"build:js": "babel src --out-dir dist --extensions .ts,.js --ignore src/**/*.test.js,src/jest.setup.ts,src/**/*.test.ts,src/**/*.d.ts",
"build:types": "tsc --project . --declaration --emitDeclarationOnly",
"clean": "rm -rf dist",
"lint": "eslint --ignore-path=.gitignore .",
"start": "npm run build -- --watch",
"prepublishOnly": "npm run clean && npm run build",
"test": "jest src",
"typecheck": "tsc --project . --noEmit"
},
"files": [
"cli.js",
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dcwither/scss-codemods.git"
},
"keywords": [
"scss",
"codemod",
"postcss",
"sass"
],
"author": "Devin Witherspoon",
"license": "MIT",
"bugs": {
"url": "https://github.com/dcwither/scss-codemods/issues"
},
"homepage": "https://github.com/dcwither/scss-codemods#readme",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/jest": "^26.0.14",
"@types/npmlog": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.4.2",
"jest-postcss": "^0.1.0",
"prettier": "2.1.2",
"typescript": "^4.0.3"
},
"dependencies": {
"color-convert": "^2.0.1",
"delta-e": "0.0.8",
"minimist": "^1.2.5",
"npmlog": "^4.1.2",
"postcss": "^8.1.4",
"postcss-scss": "^3.0.1",
"specificity": "^0.4.1",
"yargs": "^16.0.3"
}
}