-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "ng-operators",
"version": "1.2.0",
"description": "RxJS operators for Angular",
"main": "src/index.js",
"scripts": {
"clean": "rm -rf dist && rm -rf src/*.{d.ts,js,js.map} && rm -rf src/**/*.{d.ts,js,js.map}",
"build": "npm run clean && tsc -p .",
"fmt": "tsfmt -r src/**/*.ts",
"lint": "tslint src/**/*.ts",
"test": "tsc -p tsconfig.test.json && mocha",
"preversion": "npm run lint && npm run build && npm test",
"postversion": "node make-package.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/laco0416/ng-operators.git"
},
"keywords": [
"Angular",
"RxJS"
],
"author": "Suguru Inatomi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/laco0416/ng-operators/issues"
},
"homepage": "https://github.com/laco0416/ng-operators#readme",
"peerDependencies": {
"@angular/core": ">=2.0.0",
"rxjs": "^5.0.0"
},
"devDependencies": {
"@angular/common": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/http": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/router": "^4.0.0",
"@types/mocha": "^2.2.35",
"@types/node": "^6.0.55",
"mocha": "^3.2.0",
"rxjs": "^5.2.0",
"tslint": "^4.2.0",
"typescript": "~2.2.1",
"typescript-formatter": "^4.0.1",
"zone.js": "^0.8.5"
}
}