-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.78 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
46
47
48
49
{
"name": "space-api",
"version": "0.19.3",
"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 && browserify ./index.js -s Space -o ./bundle/bundle.js && babel ./bundle -d ./bundle --ignore test.js && uglifyjs bundle/bundle.js -o bundle/space-api.js && rm ./bundle/bundle.js && babel ./lib -d ./dist/lib --ignore test.js && npm run docs",
"pretest": "npm run build",
"pub": "npm run build && npm publish",
"docs": "jsdoc2md -f lib/api.js > lib/README.md && jsdoc2md -f lib/db/db.js -f lib/db/insert.js -f lib/db/get.js -f lib/db/update.js -f lib/db/delete.js -f lib/db/aggregate.js > lib/db/README.md && jsdoc2md -f lib/realtime/liveQuery.js > lib/realtime/README.md && jsdoc2md -f lib/filestore/filestore.js > lib/filestore/README.md"
},
"author": "Noorain Panjwani",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/spaceuptech/space-api-js.git"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"browserify": "^16.2.3",
"chai": "^4.1.2",
"jsdoc-to-markdown": "^5.0.3",
"mocha": "^5.1.1",
"nyc": "^14.1.1",
"uglify-js": "^3.4.9"
},
"files": [
"dist"
],
"dependencies": {
"@babel/polyfill": "^7.2.5",
"form-data": "^2.3.3",
"isomorphic-ws": "^4.0.1",
"node-fetch": "^2.3.0",
"url": "^0.11.0",
"websocket": "^1.0.28",
"ws": "^6.1.4"
}
}