-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "MyLib",
"version": "1.0.0",
"description": "A template to write robust client-side javascript libraries",
"main": "src/main.js",
"scripts": {
"test": "mocha-phantomjs ./test/test.html --hooks ./test/src/phantom_hooks.js -R xunit -f test/results/result.xml"
},
"repository": {
"type": "git",
"url": "https://github.com/rte-antares-rpackage/js-client-tmpl.git"
},
"keywords": [
"javascript",
"client",
"side",
"template",
"unit testing",
"code coverage"
],
"author": "Francois Guillem",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"browserify-istanbul": "^2.0.0",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-istanbul": "^0.8.0",
"grunt-mocha-phantomjs": "^4.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"mocha-phantomjs": "^4.1.0"
},
"bugs": {
"url": "https://github.com/rte-antares-rpackage/js-client-tmpl/issues"
},
"homepage": "https://github.com/rte-antares-rpackage/js-client-tmpl#readme"
}