-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (45 loc) · 1.07 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
{
"name": "testing-private-library",
"version": "0.1.0",
"scripts": {
"lint": "tslint src/**/*.ts",
"test": "tsc && karma start",
"postinstall": "typings install",
"prepublish": "tsc",
"tsc": "tsc",
"typings": "typings",
"build": "rm -rf dist/ && cp -r src dist && find -E ./dist -type f ! -regex '.*\\.(html|css)' -delete && tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/brauliolomeli/testing-private-library.git"
},
"author": {
"name": "Braulio Lomelí",
"email": "[email protected]"
},
"keywords": [
"angular",
"angular2"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/brauliolomeli/testing-private-library.git/issues"
},
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"dependencies": {
},
"devDependencies": {
"@angular/core": "2.0.0-rc.3",
"codelyzer": "^0.0.20",
"rxjs": "5.0.0-beta.6",
"tslint": "^3.6.0",
"typescript": "^1.8.10",
"typings":"^1.0.4",
"zone.js": "0.6.12"
},
"engines": {
"node": ">=0.8.0"
}
}