-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·44 lines (44 loc) · 1.07 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
{
"name": "ares-data",
"description": "Load information about employers from Czech ares service.",
"version": "2.0.0",
"author": {
"name": "David Kudera",
"email": "[email protected]"
},
"keywords": ["ares", "employer", "company", "czech"],
"repository": {
"type": "git",
"url": "[email protected]:Carrooi/Node-AresData.git"
},
"license": "MIT",
"engines": {
"node": "*"
},
"main": "./lib/Ares.js",
"dependencies": {
"browser-http": "4.0.1",
"xml-parser": "1.2.0"
},
"devDependencies": {
"gulp": "3.8.11",
"gulp-util": "3.0.4",
"gulp-coffee": "2.3.1",
"gulp-uglify": "1.1.0",
"gulp-rename": "1.2.0",
"vinyl-source-stream": "1.1.0",
"browserify": "9.0.3",
"coffeeify": "1.0.0",
"mocha": "2.2.0",
"phantomjs": "1.9.16",
"mocha-phantomjs": "3.5.3",
"chai": "2.1.1"
},
"scripts": {
"compile-source": "gulp compile-source",
"compile-tests": "gulp compile-tests",
"compile-standalone": "gulp compile-standalone",
"test": "mocha-phantomjs -p ./node_modules/phantomjs/bin/phantomjs ./test/index.html",
"prepublish": "gulp compile-source"
}
}