forked from mgechev/ngast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.71 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
{
"name": "ngast",
"version": "0.1.3",
"description": "Parsing tools for Angular. The project is an abstraction over the Angular compiler which provides friendly interface.",
"main": "ngast.bundle.js",
"module": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/mgechev/ngast.git"
},
"peerDependencies": {
"@angular/compiler": "6.0.0-rc.1",
"@angular/compiler-cli": "6.0.0-rc.1",
"@angular/core": "6.0.0-rc.1",
"typescript": "~2.7.2"
},
"devDependencies": {
"@angular/common": "6.0.0-rc.1",
"@angular/compiler": "6.0.0-rc.1",
"@angular/compiler-cli": "6.0.0-rc.1",
"@angular/core": "6.0.0-rc.1",
"@angular/platform-browser": "6.0.0-rc.1",
"@angular/platform-browser-dynamic": "6.0.0-rc.1",
"@angular/router": "6.0.0-rc.1",
"@angular/tsc-wrapped": "^4.4.6",
"@types/jasmine": "^2.5.41",
"@types/node": "^7.0.2",
"esdoc": "^0.5.2",
"jasmine": "^2.5.3",
"rimraf": "^2.5.4",
"rollup": "^0.41.4",
"rxjs": "^6.0.0-rc.0",
"ts-node": "^4.0.0",
"tsickle": "^0.21.1",
"tslint": "^4.3.1",
"zone.js": "~0.8.20"
},
"scripts": {
"build": "rimraf dist && tsc && rollup -c rollup.config.js -i dist/index.js > dist/ngast.bundle.js && cp package.json dist && ts-node -P tsconfig-ts-node.json tools/cleanup.ts && cp README.md dist",
"build:test": "rimraf dist-test && tsc -p tsconfig-test.json",
"test": "npm run build:test && jasmine",
"docs": "tsc -p tsconfig-docs.json && esdoc"
},
"keywords": [
"AST",
"Angular",
"Parser",
"Compiler"
],
"author": "Minko Gechev <[email protected]>",
"license": "MIT",
"dependencies": {
"typescript": "^2.7.2"
}
}