-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.04 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": "@ctx/ts.http",
"version": "1.0.0",
"description": "configurable client http layer",
"main": "./dist/index.js",
"scripts": {
"start": "npm run watch",
"watch": "nodemon -e ts -x 'npm test'",
"clean": "del ./dist/**/*.ts",
"build": "npm run clean && tsc",
"test": "jasmine-ts './src/**/*.spec.ts'",
"bump": "bump -y package.json"
},
"contributors": [
"Jaime Beneytez",
"James Robb"
],
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^2.5.47",
"bump-cli": "^1.1.3",
"del-cli": "^0.2.1",
"jasmine-spec-reporter": "^3.3.0",
"jasmine-ts": "^0.2.1",
"nodemon": "^1.11.0",
"typescript": "^2.3.2"
},
"dependencies": {
"rxjs": "^5.3.0",
"@ctx/ts.common": "[email protected]:ef-ctx/ctx.ts.common.git",
"@jb/ts.util": "[email protected]:JaimeBeneytez/jb.ts.util.git",
"@jb/ts.data-structures": "[email protected]:JaimeBeneytez/jb.ts.data-structures.git"
}
}