forked from mgechev/aspect.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 KB
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
{
"name": "aspect.js",
"version": "0.5.1",
"description": "Library for aspect-oriented programming with JavaScript",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"build_publish": "rm -rf dist && tsc && ngc && cp ./package.json README.md dist/lib",
"test": "tsc && mocha -R nyan ./dist/test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git://github.com/mgechev/aspect.js.git"
},
"keywords": [
"aop",
"aspects",
"aspect-oriented",
"programming",
"javascript",
"decorators",
"pointcut",
"joint point"
],
"author": "Minko Gechev <mgechev@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mgechev/aspect.js/issues"
},
"homepage": "https://github.com/mgechev/aspect.js",
"devDependencies": {
"@angular/compiler": "^2.4.8",
"@angular/compiler-cli": "^2.4.8",
"@angular/core": "^2.4.8",
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.33",
"@types/node": "^6.0.48",
"chai": "^3.3.0",
"mocha": "^3.4.2",
"rxjs": "^5.2.0",
"typescript": "^2.0.2",
"zone.js": "^0.7.7"
}
}