-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.68 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.68 KB
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": "pesapi",
"version": "0.1.6",
"description": "PES database API in Node.js (test)",
"main": "index.js",
"author": "Diego Martin Marmol <diegomartinmarmol@gmail.com>",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist/ && babel ./index.js ./src/**/*.js --out-dir dist/ --ignore ./node_modules,./.babelrc,./npm-debug.log --copy-files",
"copyPackageJson": "cp package.json dist/",
"start:build": "cross-env NODE_ENV=development yarn build && node dist/index.js",
"start": "nodemon index.js"
},
"dependencies": {
"bluebird": "^3.5.1",
"chalk": "^2.4.1",
"cheerio": "1.0.0-rc.2",
"express": "4.16.2",
"lodash": "4.17.21",
"multi-progress": "^2.0.0",
"query-string": "6.1.0",
"request": "2.83.0",
"request-promise": "4.2.2",
"url": "0.11.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-dynamic-import-node": "1.1.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-imports": "1.4.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-es2016": "6.24.1",
"babel-preset-react-app": "3.0.3",
"babel-preset-stage-1": "6.24.1",
"babel-runtime": "6.26.0",
"cross-env": "5.1.0",
"eslint": "4.9.0",
"nodemon": "^3.0.3"
}
}