forked from sveltejs/svelte-preprocess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.16 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
72
{
"name": "svelte-preprocess",
"version": "2.12.0",
"license": "MIT",
"main": "src/index.js",
"types": "src/index.d.ts",
"description": "A Svelte preprocessor wrapper with baked in support for common used preprocessors",
"author": "Christian Kaisermann <[email protected]>",
"repository": "https://github.com/kaisermann/svelte-preprocess",
"keywords": [
"svelte",
"preprocess",
"less",
"stylus",
"sass",
"scss",
"pug",
"coffeescript"
],
"files": [
"src/"
],
"scripts": {
"test": "jest --no-cache --verbose",
"test:watch": "jest --no-cache --verbose --watchAll",
"lint": "eslint \"src/**/*.js\"",
"format": "prettier --loglevel silent --write \"src/**/*.js\" && eslint --fix \"src/**/*.js\"",
"prepublishOnly": "npm run format && npm run test",
"postinstall": "node -e \"console.log('\\u001b[36m\\u001b[1m[svelte-preprocess] Don\\'t forget to install the preprocessors packages that will be used: \\u001b[22m\\u001b[39m\\u001b[34mnode-sass/sass, stylus, less, postcss, coffesscript, pug, etc...\\u001b[0m')\"",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"auto-changelog": {
"template": "keepachangelog"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/src/**/*.js",
"!**/node_modules/**"
]
},
"devDependencies": {
"auto-changelog": "^1.11.0",
"autoprefixer": "^9.4.7",
"coffeescript": "^2.3.2",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.1.0",
"less": "^3.9.0",
"node-sass": "^4.12.0",
"postcss": "^7.0.14",
"postcss-easy-import": "^3.0.0",
"prettier": "^1.16.4",
"pug": "^2.0.3",
"stylus": "^0.54.5",
"svelte": "^3.0.0",
"typescript": "^3.4.5"
},
"peerDependencies": {
"svelte": "^1.44.0 || ^2.0.0 || ^3.0.0"
},
"dependencies": {
"postcss-load-config": "^2.0.0",
"strip-indent": "^2.0.0"
}
}