-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
37 lines (37 loc) · 895 Bytes
/
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
{
"name": "angularcontext",
"version": "0.0.23",
"description": "Use AngularJS in Node applications",
"author": "Martin Atkins <[email protected]>",
"keywords": [
"angularjs"
],
"repository": {
"type": "git",
"url": "git://github.com/apparentlymart/node-angularcontext.git"
},
"main": "./lib/main",
"scripts": {
"test": "nodeunit tests/",
"lint": "jshint -c .jshintrc lib/* tests/*"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/apparentlymart/node-angularcontext/blob/master/LICENSE"
}
],
"dependencies": {
"jsdom": "~11.11.0"
},
"devDependencies": {
"nodeunit": "*",
"jshint": "2.1.11"
},
"optionalDependencies": {
"angular": "*"
},
"engines": {
"node": ">= 6.0.0"
}
}