forked from caat1k/GA-JavaScript-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.39 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
48
49
50
51
52
53
{
"name": "ga-javascript-sdk",
"author": "Orange Games",
"version": "2.1.0",
"description": "Unofficial JavaScript SDK for GameAnalytics, REST API v2 version",
"keywords": [
"GameAnalytics",
"JavaScript"
],
"contributors": [
{
"name": "Ale Bles",
"email": "[email protected]"
}
],
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/orange-games/GA-JavaScript-SDK/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "https://github.com/orange-games/GA-JavaScript-SDK"
},
"devDependencies": {
"chai": "^3.4.1",
"grunt": "0.4.x",
"grunt-banner": "0.5.0",
"grunt-contrib-clean": "0.6.0",
"grunt-contrib-uglify": "0.7.0",
"grunt-contrib-watch": "0.6.x",
"grunt-typescript": "0.4.x",
"karma": "^0.13.15",
"karma-chai": "^0.1.0",
"karma-coverage": "^0.5.3",
"karma-mocha": "^0.2.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sinon": "^1.0.4",
"karma-teamcity-reporter": "^0.2.1",
"mocha": "^2.3.4",
"phantomjs": "^1.9.19",
"sinon": "^1.17.3",
"typescript": "1.3.0"
},
"scripts": {
"test": "./node_modules/karma/bin/karma start ./tests/config.js --single-run",
"test-teamcity": "./node_modules/karma/bin/karma start ./tests/config.js --single-run --reporters teamcity,coverage"
},
"engines": {
"node": "2.5.0"
}
}