-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.93 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
{
"name": "jest-postcss",
"version": "0.1.0",
"description": "Jest utils for postcss plugins",
"main": "dist/index.js",
"typings": "typings/index.d.ts",
"scripts": {
"build": "npm run build:js",
"build:js": "babel src --out-dir dist --extensions .ts,.js --ignore src/**/*.test.js,src/**/*.test.ts,src/**/*.d.ts",
"build:types": "tsc --project . --declaration --emitDeclarationOnly",
"clean": "rm -rf dist",
"lint": "eslint --ignore-path=.gitignore --ext=js,ts .",
"start": "npm run build:js -- --watch",
"prepublishOnly": "npm run clean && npm run build",
"test": "jest src --colors",
"typecheck": "tsc --project . --noEmit"
},
"files": [
"dist/",
"typings/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dcwither/jest-postcss.git"
},
"keywords": [
"scss",
"codemod",
"postcss",
"sass"
],
"author": "Devin Witherspoon",
"license": "MIT",
"bugs": {
"url": "https://github.com/dcwither/jest-postcss/issues"
},
"homepage": "https://github.com/dcwither/jest-postcss#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",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.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",
"postcss": "^8.1.4",
"prettier": "2.1.2",
"strip-ansi": "^6.0.0",
"typescript": "^4.0.3"
},
"dependencies": {},
"peerDependencies": {
"jest": ">= 24.0.0",
"prettier": ">= 1.0.0",
"postcss": ">= 8.0.0"
}
}