-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.48 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
{
"name": "transpile-middleware",
"version": "0.11.0",
"description": "Read and transpile JS code on-the-fly for browsers",
"main": "transpile.js",
"scripts": {
"test": "node test",
"update-kangax": "cd build ; npm i git+https://github.com/kangax/compat-table.git#gh-pages ; cd .. ; node build",
"update-ua": "npm i git+https://github.com/ua-parser/uap-core.git",
"update-all": "npm run update-kangax ; npm run update-ua"
},
"keywords": [
"Transpile",
"babel",
"nodent",
"browser",
"ES6"
],
"author": "MatAtWork, lozlow",
"license": "ISC",
"dependencies": {
"babel-core": "^6.10.4",
"object.assign": "^4.0.4",
"resolve": "^1.1.7",
"uap-core": "git+https://github.com/ua-parser/uap-core.git",
"uap-ref-impl": "^0.2.0",
"yamlparser": "0.0.2"
},
"devDependencies": {
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.8.0",
"babel-plugin-transform-es2015-block-scoping": "^6.10.1",
"babel-plugin-transform-es2015-computed-properties": "^6.8.0",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-es2015-literals": "^6.8.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.8.0",
"babel-plugin-transform-es2015-template-literals": "^6.8.0",
"nodent": ">=2.6.9"
},
"repository": {
"type": "git",
"url": "https://github.com/MailOnline/transpile-middleware.git"
},
"engines": "node >= 0.10.0"
}