forked from bclinkinbeard/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 845 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 845 Bytes
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
{
"name": "angular-node",
"version": "1.3.2",
"description": "AngularJS provided as a CommonJS module. Compiled with jsdom when running in Node. Useful for client-side apps built with Browserify and for testing AngularJS code in Node without depending on a browser.",
"main": "index.js",
"browser": "index-browserify.js",
"scripts": {
"test": "tape test/index.js",
"build": "bin/build.js"
},
"repository": {
"type": "git",
"url": "http://github.com/bclinkinbeard/angular.git"
},
"keywords": [
"angular",
"angularjs",
"commonjs",
"require",
"testing"
],
"author": {
"name": "Ben Clinkinbeard",
"email": "ben.clinkinbeard@gmail.com"
},
"license": "MIT",
"dependencies": {
"angular": "1.3.2",
"jsdom": "~0.8.8"
},
"devDependencies": {
"tape": "~2.1.0"
}
}