-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 929 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 929 Bytes
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
{
"name": "node-metadata",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist/ && babel ./src --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "npm run build && node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.7.0",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-prettier": "^2.2.0",
"flow": "^0.2.3",
"prettier": "^1.7.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"box-node-sdk": "^1.19.0",
"papaparse": "^4.5.0",
"underscore": "^1.9.1"
}
}