-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
106 lines (106 loc) · 4.13 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
{
"name": "koa-esm-transform",
"version": "1.0.0-pre.1",
"description": "Middleware for Koa servers that transforms standard JavaScript modules to earlier versions of JavaScript and/or AMD modules (inlining loader script @polymer/esm-amd-loader into the HTML), for use with older browsers.",
"main": "lib/koa-esm-transform.js",
"files": [
"lib/*",
"!lib/test"
],
"scripts": {
"build": "npm run lint && npm run format && npm run depcheck && npm run clean && npm run compile",
"clean": "rimraf lib",
"compile": "tsc",
"depcheck": "depcheck --ignore-dirs=lib --ignores=\"rimraf,source-map-support,@babel/types,@types/*\"",
"format": "find src -name \"*.ts\" | xargs clang-format --style=file -i",
"lint": "tslint -p . --fix",
"test": "npm run test:raw --silent | tap-diff",
"test:raw": "tape -r source-map-support/register 'lib/test/*.test.js' 'lib/test/**/*.test.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/PolymerLabs/koa-node-resolve.git"
},
"bugs": {
"url": "https://github.com/PolymerLabs/koa-node-resolve/issues"
},
"homepage": "https://github.com/PolymerLabs/koa-node-resolve",
"keywords": [],
"license": "BSD-3-Clause",
"author": "The Polymer Project Authors",
"devDependencies": {
"@babel/types": "^7.5.5",
"@types/babel-template": "^6.25.2",
"@types/babel__core": "^7.1.2",
"@types/babel__template": "^7.0.2",
"@types/babel__traverse": "^7.0.7",
"@types/clone": "^0.1.30",
"@types/get-stream": "^3.0.2",
"@types/koa": "^2.0.49",
"@types/koa-route": "^3.2.4",
"@types/minimatch": "^3.0.3",
"@types/node": "^12.7.1",
"@types/path-is-inside": "^1.0.0",
"@types/resolve": "0.0.8",
"@types/supertest": "^2.0.8",
"@types/tape": "^4.2.33",
"clang-format": "^1.2.4",
"depcheck": "^0.8.3",
"koa": "^2.7.0",
"koa-route": "^3.2.0",
"portfinder": "^1.0.22",
"rimraf": "^2.6.3",
"source-map-support": "^0.5.13",
"supertest": "^4.0.2",
"tap-diff": "^0.1.1",
"tape": "^4.11.0",
"tslint": "^5.16.0",
"typescript": "^3.5.3"
},
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/generator": "^7.5.5",
"@babel/parser": "^7.5.5",
"@babel/plugin-proposal-async-generator-functions": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-block-scoped-functions": "^7.2.0",
"@babel/plugin-transform-block-scoping": "^7.5.5",
"@babel/plugin-transform-classes": "^7.5.5",
"@babel/plugin-transform-computed-properties": "^7.2.0",
"@babel/plugin-transform-destructuring": "^7.5.0",
"@babel/plugin-transform-duplicate-keys": "^7.5.0",
"@babel/plugin-transform-exponentiation-operator": "^7.2.0",
"@babel/plugin-transform-for-of": "^7.4.4",
"@babel/plugin-transform-function-name": "^7.4.4",
"@babel/plugin-transform-instanceof": "^7.5.5",
"@babel/plugin-transform-literals": "^7.2.0",
"@babel/plugin-transform-modules-amd": "^7.5.0",
"@babel/plugin-transform-object-super": "^7.5.5",
"@babel/plugin-transform-parameters": "^7.4.4",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/plugin-transform-shorthand-properties": "^7.2.0",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/plugin-transform-sticky-regex": "^7.2.0",
"@babel/plugin-transform-template-literals": "^7.4.4",
"@babel/plugin-transform-typeof-symbol": "^7.2.0",
"@babel/plugin-transform-unicode-regex": "^7.4.4",
"@babel/template": "^7.4.4",
"@babel/traverse": "^7.5.5",
"@polymer/esm-amd-loader": "^1.0.4",
"@types/babel__generator": "^7.0.2",
"@types/parse5": "^5.0.2",
"babel-preset-minify": "^0.5.1",
"browser-capabilities": "^1.1.4",
"clone": "^2.1.2",
"css-select": "^2.0.2",
"css-select-parse5-adapter": "^1.0.0-pre.1",
"get-stream": "^5.1.0",
"minimatch": "^3.0.4",
"parse5": "^5.1.0",
"regenerator-runtime": "^0.13.3"
}
}