forked from FredKSchott/snowpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.14 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "snowpack",
"version": "2.0.0-beta.12",
"description": "Run npm packages directly in the browser. No Webpack, Parcel, or bundlers required.",
"author": "Fred K. Schott <fkschott@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pikapkg/snowpack.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pika build",
"format": "prettier --write 'src/**/*.ts'",
"lint": "prettier --check 'src/**/*.ts'",
"publish": "pika publish",
"version": "npm run build",
"test": "npm run test:integration",
"test:integration": "jest test/integration/runner.js --test-timeout=15000 --testMatch \"**/test/**/*.[jt]s?(x)\" -i",
"docs:build": "cat docs/* > www/index.md && npx @11ty/eleventy --config www/.eleventy.js",
"docs:watch": "cat docs/* > www/index.md && npx @11ty/eleventy --config www/.eleventy.js --serve",
"docs:deploy": "npm run docs:build && cp now.json www/dist && cd www/dist && now"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-copy-assets"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-simple-bin",
{
"bin": "sp"
}
],
[
"@pika/plugin-simple-bin",
{
"bin": "snowpack"
}
]
]
},
"dependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/plugin-syntax-typescript": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.9.4",
"@babel/preset-env": "^7.6.3",
"@rollup/plugin-alias": "^3.0.1",
"@rollup/plugin-commonjs": "~11.0.0",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-node-resolve": "^7.1.0",
"@rollup/plugin-replace": "^2.1.0",
"@types/tar": "^4.0.3",
"ansi-escapes": "^4.3.1",
"cacache": "^15.0.0",
"cachedir": "^2.3.0",
"chalk": "^3.0.0",
"cosmiconfig": "^6.0.0",
"deepmerge": "^4.2.2",
"es-module-lexer": "^0.3.17",
"execa": "^4.0.0",
"fs-extra": "^9.0.0",
"glob": "^7.1.4",
"got": "^10.4.0",
"is-builtin-module": "^3.0.0",
"jsonschema": "^1.2.5",
"mime-types": "^2.1.26",
"mkdirp": "^1.0.3",
"ora": "^3.1.0",
"p-queue": "^6.2.1",
"resolve-from": "^5.0.0",
"rimraf": "^3.0.0",
"rollup": "^2.3.0",
"tar": "^6.0.1",
"validate-npm-package-name": "^3.0.0",
"yargs-parser": "^16.1.0"
},
"devDependencies": {
"@11ty/eleventy": "^0.10.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.1",
"@pika/plugin-copy-assets": "^0.9.1",
"@pika/plugin-simple-bin": "^0.9.1",
"@pika/plugin-ts-standard-pkg": "^0.9.1",
"@types/babel__traverse": "^7.0.7",
"@types/cacache": "^12.0.1",
"@types/es-module-lexer": "^0.3.0",
"@types/mkdirp": "^1.0.0",
"cross-env": "^7.0.2",
"dir-compare": "^2.2.0",
"eleventy-plugin-nesting-toc": "^1.1.0",
"jest": "^25.1.0",
"markdown-it": "^10.0.0",
"markdown-it-anchor": "^5.2.5",
"prettier": "^2.0.2",
"typescript": "^3.6.4"
}
}