forked from wanwu/san-sfc-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.69 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
{
"name": "san-sfc-compiler",
"version": "0.1.1",
"description": "Lower level utilities for compiling .san single file components",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wanwu/san-sfc-compiler.git"
},
"bugs": {
"url": "https://github.com/wanwu/san-sfc-compiler/issues"
},
"homepage": "https://github.com/wanwu/san-sfc-compiler#readme",
"keywords": [
"san",
"transformer",
"component",
"sfc"
],
"author": "[email protected]",
"license": "MIT",
"scripts": {
"lint": "prettier --write \"{src,test}/**/*.ts\"",
"clean": "rm -rf dist && rm -rf coverage",
"build": "npm run clean && npm run lint && tsc",
"test": "jest",
"prepublishOnly": "npm run test && npm run build"
},
"jest": {
"testURL": "http://localhost",
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"san": "^3.10.10",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"dependencies": {
"@types/lodash.mapvalues": "^4.6.6",
"consolidate": "^0.16.0",
"domhandler": "^4.2.2",
"hash-sum": "^2.0.0",
"htmlparser2": "^7.1.2",
"less": "^4.1.2",
"lodash.mapvalues": "^4.6.0",
"merge-source-map": "^1.1.0",
"postcss": "^8.3.11",
"postcss-selector-parser": "^6.0.6",
"pug": "^3.0.2",
"san-anode-utils": "^3.10.0",
"sass": "^1.43.4",
"source-map": "^0.7.3",
"stylus": "^0.55.0"
}
}