-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 1.09 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
{
"name": "@matchmore/matchmore",
"version": "0.7.4",
"description": "A cloud service for creating highly dynamic, location-based applications",
"license": "MIT",
"main": "dist/index.js",
"browser": "dist/web/index.js",
"homepage": "https://matchmore.io",
"scripts": {
"build": "tsc && cp -rf src/api dist/api",
"test": "./node_modules/.bin/mocha --compilers ts:ts-node/register ./test/**/*.ts",
"browserify": "browserify ./dist/index.js --standalone matchmore > ./dist/web/matchmore.js",
"minify": "browserify ./dist/index.js --standalone matchmore | uglifyjs -c > ./dist/web/matchmore.min.js"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^2.2.48",
"babel-core": "^6.26.0",
"browserify": "^16.1.1",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"copyfiles": "^2.0.0",
"mocha": "^5.2.0",
"ts-node": "^5.0.1",
"typescript": "^2.7.2"
},
"dependencies": {
"Base64": "^1.0.1",
"querystring": "^0.2.0",
"superagent": "^3.8.3",
"websocket": "^1.0.25"
}
}