-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.09 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
{
"name": "cloakjs",
"version": "1.0.1",
"description": "A small AOP/Proxy/Wrapper library with a fluent interface",
"main": "cloak.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "http://github.com/mdvorscak/cloakjs"
},
"dependencies": {},
"devDependencies": {
"coveralls": "3.0.0",
"gulp": "3.9.1",
"gulp-header": "2.0.1",
"gulp-istanbul": "1.1.3",
"gulp-jasmine": "3.0.0",
"gulp-rename": "1.2.2",
"gulp-uglify": "3.0.0",
"jasmine-core": "2.9.0",
"karma": "2.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.1.1",
"lcov-result-merger": "^1.2.0"
},
"scripts": {
"test": "gulp test",
"coveralls": "cat ./coverage/lcov-merged.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"keywords": [
"AOP",
"wrapper",
"Cloak",
"Proxy",
"fluent"
],
"author": "Mike Dvorscak",
"license": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/mdvorscak/cloakjs/master/LICENSE"
}
]
}