You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.5 KiB
72 lines
1.5 KiB
{
|
|
"name": "now",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"main": "./build/lib/index",
|
|
"files": [
|
|
"build/lib",
|
|
"build/bin"
|
|
],
|
|
"bin": {
|
|
"now": "./build/bin/now"
|
|
},
|
|
"dependencies": {
|
|
"arr-flatten": "1.0.1",
|
|
"array-unique": "0.2.1",
|
|
"babel-runtime": "6.5.0",
|
|
"bytes": "2.3.0",
|
|
"chalk": "1.1.1",
|
|
"commander": "2.9.0",
|
|
"copy-paste": "1.1.4",
|
|
"fs-promise": "0.4.1",
|
|
"graceful-fs": "4.1.3",
|
|
"ms": "0.7.1",
|
|
"node-fetch": "1.3.3",
|
|
"progress": "1.1.8",
|
|
"retry": "0.9.0",
|
|
"spdy": "3.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"alpha-sort": "1.0.2",
|
|
"ava": "0.12.0",
|
|
"babel-eslint": "4.1.8",
|
|
"babel-plugin-transform-runtime": "6.5.2",
|
|
"babel-plugin-syntax-async-functions": "6.3.13",
|
|
"babel-plugin-transform-async-to-generator": "6.4.6",
|
|
"babel-preset-es2015": "6.3.13",
|
|
"babel-register": "6.5.2",
|
|
"del": "2.2.0",
|
|
"eslint-config-standard": "4.4.0",
|
|
"eslint-plugin-standard": "1.3.1",
|
|
"gulp": "3.9.0",
|
|
"gulp-babel": "6.1.2",
|
|
"gulp-eslint": "1.1.1",
|
|
"gulp-ext": "1.0.0",
|
|
"gulp-task-listing": "1.0.1"
|
|
},
|
|
"scripts": {
|
|
"gulp": "gulp",
|
|
"test": "ava",
|
|
"postinstall": "scripts/post-install.js"
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
"es2015"
|
|
],
|
|
"plugins": [
|
|
"transform-runtime",
|
|
"syntax-async-functions",
|
|
"transform-async-to-generator"
|
|
]
|
|
},
|
|
"ava": {
|
|
"failFast": true,
|
|
"files": [
|
|
"test/*.js"
|
|
],
|
|
"require": [
|
|
"babel-register"
|
|
]
|
|
}
|
|
}
|
|
|