-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "ng-metadata-quickstart",
"version": "1.4.0",
"description": "Sample project quickstart using ngMetadata",
"main": "index.js",
"scripts": {
"lint": "tslint --config tslint.json app/*.ts app/**/*.ts",
"prebuild": "npm run lint",
"build": "tsc -w -pretty -p .",
"serve": "http-server --cors -c-1 -o index.html",
"start": "npm run build & npm run serve",
"postinstall": "typings install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmorosinotto/ng-metadata-quickstart.git"
},
"keywords": [
"ngMetadata",
"Angular",
"Typescript",
"SystemJS"
],
"author": "Daniele Morosinotto",
"contributors": [
"Michael de Lang <[email protected]> (https://github.com/oipo/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dmorosinotto/ng-metadata-quickstart/issues"
},
"homepage": "https://github.com/dmorosinotto/ng-metadata-quickstart#readme",
"dependencies": {
"angular": "^1.5.5",
"ng-metadata": "^1.11.0",
"reflect-metadata": "^0.1.3",
"systemjs": "^0.19.26"
},
"devDependencies": {
"tslint": "^3.7.4",
"typescript": "^1.8.10"
}
}