-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.79 KB
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": "san-loader-next",
"version": "0.1.0",
"description": "San single-file-component loader for Webpack",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "rimraf dist/ && tsc -w",
"build": "npm run lint && rimraf dist/ && tsc",
"lint": "prettier --write \"{src,test}/**/*.{ts,js}\"",
"prepublishOnly": "npm test && npm run build",
"tar": "npm pack && cp -r ./*.tgz examples/san-loader.tgz && rimraf ./*.tgz",
"local": "npm run build && cp -r dist/* examples/complex/node_modules/san-loader/dist",
"test": "run-p test:*",
"test:unit": "jest test/unit --no-cache",
"test:e2e": "jest test/e2e --no-cache"
},
"keywords": [
"san",
"sfc",
"webpack",
"loader"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wanwu/san-loader-next.git"
},
"bugs": {
"url": "https://github.com/wanwu/san-loader-next/issues"
},
"homepage": "https://github.com/wanwu/san-loader-next#readme",
"author": "Baidu.Inc",
"maintainers": [
"ksky521",
"clark-t",
"wangjinghao@baidu.com"
],
"license": "MIT",
"devDependencies": {
"@types/loader-utils": "^2.0.3",
"@types/qs": "^6.9.7",
"jest": "^27.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"san-anode-utils": "^3.10.0",
"typescript": "^4.4.4",
"webpack5": "npm:webpack@^5.64.0"
},
"dependencies": {
"hash-sum": "^2.0.0",
"loader-utils": "^2.0.2",
"qs": "^6.10.1",
"san": "^3.10.10",
"san-sfc-compiler": "^0.1.6",
"webpack": "^4.46.0"
},
"peerDependencies": {
"webpack": "^3.0.0 || ^4.1.0 || ^5.0.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"testTimeout": 15000
}
}