-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.67 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "georide-js",
"version": "2.0.1",
"description": "Georide JavaScript sdk",
"homepage": "https://neilujd.github.io/georide-js/",
"repository": {
"type": "git",
"url": "git://github.com/NeilujD/georide-js.git"
},
"main": "dist/cjs/georide.js",
"browser": "dist/esm/georide.js",
"module": "dist/esm/georide.js",
"files": [
"dist/**/*",
"src/**/*",
"test/**/*",
"tsconfig.json"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc --module ES2015 --target ES2015 --outDir dist/esm",
"build:cjs": "tsc --module commonjs --target ES2015 --outDir dist/cjs",
"clean-and-build": "rm -r dist && npm run build",
"doc:build": "typedoc --plugin typedoc-plugin-nojekyll",
"doc:deploy": "gh-pages --message \"[ci skip] update documentation\" -d docs",
"test": "mocha -r ts-node/register --extension ts"
},
"keywords": [
"georide",
"sdk",
"api",
"node",
"javascript",
"browser",
"server"
],
"author": "NeilujD <[email protected]>",
"license": "SEE LICENSE IN ./LICENSE",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.5",
"chai": "^4.2.0",
"gh-pages": "^2.2.0",
"mocha": "^7.1.2",
"nock": "^12.0.3",
"ts-node": "^8.10.1",
"typedoc": "^0.17.6",
"typedoc-plugin-nojekyll": "^1.0.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/node-fetch": "^2.5.7",
"@types/socket.io-client": "^1.4.33",
"cross-fetch": "^3.0.4",
"moment": "^2.25.3",
"node-localstorage": "^2.1.6",
"socket.io": "^2.3.0"
}
}