-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.61 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@onixjs/sdk",
"version": "1.0.0-beta.5",
"description": "RPC Client for OnixJS Applications.",
"main": "dist/index.js",
"scripts": {
"build": "npm run lint:fix && npm run build:module:dist && npm run build:module:dist6 && npm run build:browser:dist && npm run build:browser:dist6 && npm run build:docs",
"build:module:dist": "tsc --target es2017 --outDir dist",
"build:module:dist6": "tsc --target es2015 --outDir dist6",
"build:browser:dist": "tsc --target es2017 --p tsconfig.amd.json --outFile amd/browser.dist.js",
"build:browser:dist6": "tsc --target es2015 --p tsconfig.amd.json --outFile amd/browser.dist6.js",
"build:watch": "tsc --watch",
"build:docs": "typedoc --out ./documentation ./src",
"clean": "rm -rf dist dist6",
"lint": "npm run prettier:check && npm run tslint",
"lint:fix": "npm run prettier:fix && npm run tslint:fix",
"prettier:cli": "prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"tslint": "tslint -c tslint.full.json --project tsconfig.json --type-check",
"tslint:fix": "npm run lint -- --fix",
"prepublish": "npm run build",
"pretest": "npm run lint:fix && npm run clean && npm run build",
"test": "ava",
"posttest": "npm run lint",
"serve:docs": "npm run build && node ./dist/documentation"
},
"author": {
"name": "Jonathan Casarrubias",
"email": "[email protected]",
"url": "https://github.com/mean-expert-official"
},
"homepage": "https://github.com/onixjs/sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/onixjs/sdk.git"
},
"bugs": {
"url": "https://github.com/onixjs/sdk/issues"
},
"files": [
"index.d.ts",
"dist",
"dist6",
"LICENSE.md"
],
"license": "MIT",
"dependencies": {
"reflect-metadata": "^0.1.12",
"ws": "^5.1.1"
},
"devDependencies": {
"@types/mongodb": "^3.0.18",
"@types/mongoose": "^5.0.13",
"@types/node": "^10.0.6",
"@types/ws": "^5.1.1",
"ava": "^0.25.0",
"finalhandler": "^1.1.0",
"node-localstorage": "^1.3.1",
"prettier": "^1.12.1",
"serve-static": "^1.13.1",
"tslint": "^5.10.0",
"typedoc": "^0.10.0",
"typescript": "^2.8.3"
},
"ava": {
"files": [
"test/**/*.acceptance.js"
],
"source": [
"test/**/*.acceptance.js"
],
"match": [],
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false,
"tap": true,
"color": true,
"verbose": true,
"compileEnhancements": false,
"require": [],
"babel": {}
}
}