-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "san-jest",
"version": "1.0.2",
"description": "san sfc jest support",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist/",
"dev": "npm run clean && tsc -w",
"build": "npm run lint && npm run clean && tsc",
"lint": "prettier --write \"{src,test}/**/*.{ts,js}\"",
"prepublishOnly": "npm run test && npm run build",
"test": "cd test && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wanwu/san-jest.git"
},
"keywords": [
"san",
"jest"
],
"author": "[email protected]",
"license": "MIT",
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.6",
"@babel/runtime": "^7.15.4",
"babel-jest": "^27.2.4",
"extract-from-css": "^0.4.4",
"jest": "^27.2.4",
"less": "^4.1.2",
"postcss": "^8.3.9",
"pug": "^3.0.2",
"san": "^3.10.10",
"san-sfc-compiler": "^0.1.6",
"san-test-utils": "^0.1.3",
"source-map": "0.5.6",
"ts-jest": "^27.0.7",
"typescript": "^4.4.3"
},
"devDependencies": {
"prettier": "^2.4.1"
}
}