-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.33 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.33 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "angular-join",
"version": "0.3.2",
"description": "A Node and AngularJS service for RDBMS join operations",
"repository": {
"type": "git",
"url": "https://github.com/atavakoli/angular-join.git"
},
"license": "MIT",
"main": "angular-join.js",
"keywords": [
"angular",
"join",
"database",
"rdbms",
"service",
"node",
"browser"
],
"author": {
"name": "Ali Tavakoli",
"url": "https://github.com/atavakoli"
},
"files": [
"bower.json",
"angular-join.js"
],
"dependencies": {
"q": "~1.4"
},
"devDependencies": {
"bower": "~1.7",
"jasmine-core": "~2.4",
"karma": "~0.13",
"karma-chrome-launcher": "~0.2",
"karma-firefox-launcher": "~0.1",
"karma-jasmine": "~0.3",
"karma-jasmine-html-reporter": "~0.2",
"karma-phantomjs-launcher": "~1.0",
"karma-safari-launcher": "~0.1",
"phantomjs-prebuilt": "~2.1",
"mocha": "~2.4",
"chai": "~3.5",
"sinon": "~1.17",
"sinon-chai": "~2.8"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"test:karma": "karma start test/karma/karma.conf.js --single-run --browsers Firefox,PhantomJS",
"test:node": "mocha --timeout 10000 test/node/**/*.spec.js",
"pretest": "npm install",
"test": "npm run test:karma && npm run test:node"
}
}