-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 936 Bytes
/
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": "metalsmith-svelte",
"version": "0.4.0-5",
"description": "Svelte plugin for Metalsmith",
"repository": "shinnn/metalsmith-buble",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"license": "ISC",
"scripts": {
"pretest": "eslint .",
"test": "nyc node test.js"
},
"files": [
"index.js"
],
"keywords": [
"metalsmith",
"metalsmith-plugin",
"svelte",
"html",
"script",
"transform",
"compile",
"compiler",
"transpile",
"transpiler",
"vanilla",
"template"
],
"dependencies": {
"inspect-with-kind": "^1.0.5",
"is-plain-obj": "^1.1.0",
"svelte": "^2.16.0",
"to-fast-properties": "^2.0.0"
},
"devDependencies": {
"@shinnn/eslint-config": "^6.8.7",
"eslint": "^5.11.0",
"metalsmith": "^2.3.0",
"nyc": "^13.1.0",
"nyc-config-common": "^1.0.1",
"tape": "^4.9.1"
},
"eslintConfig": {
"extends": "@shinnn"
},
"nyc": {
"extends": "nyc-config-common"
}
}