-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 976 Bytes
/
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
{
"name": "space-api-node",
"version": "0.3.26",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "npm run dev",
"dev": "npm test -- -w",
"test": "./node_modules/nyc/bin/nyc.js ./node_modules/mocha/bin/mocha",
"init": "mkdir dist",
"clean": "rm -rf dist",
"prebuild": "npm run clean && npm run init",
"build": "babel ./index.js -d ./dist --ignore test.js --presets es2015 && babel ./lib -d ./dist/lib --ignore test.js --presets es2015",
"pretest": "npm run build",
"pub": "npm run build && npm publish"
},
"author": "Noorain Panjwani",
"license": "Apache-2.0",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-preset-es2015": "^6.16.0",
"chai": "^4.1.2",
"mocha": "^5.1.1",
"nyc": "^11.7.3"
},
"files": [
"dist"
],
"dependencies": {
"node-fetch": "^2.2.0",
"time-uuid": "^1.0.0",
"underscore": "^1.9.1",
"ws": "^6.0.0"
}
}