forked from terrestris/momo3-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.47 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
{
"name": "MoMo.client",
"type": "code",
"version": "1.0.0",
"description": "Basic GIS-Client for Momo project",
"license": "GPL-3.0",
"author": "terrestris GmbH & Co. KG",
"scripts": {
"lint": "eslint -c .eslintrc ./",
"test": "mocha-phantomjs --ssl-protocol=any --ignore-ssl-errors=true test/index.html",
"coverage-clean": "rm -rf .instrumented/ && rm -rf ./coverage/ && rm -f ./test/.index_coverage.html",
"coverage-sed": "sed -e 's/..\\/app/..\\/.instrumented\\/app/g' ./test/index.html > ./test/.index_coverage.html",
"coverage-instrument": "istanbul instrument -o .instrumented/ -x '**/ext/** **/build/** **/node_modules/** **/packages/** **/sass/** **/test/**' ./",
"coverage-report": "mocha-phantomjs --ssl-protocol=any --ignore-ssl-errors=true --hooks ./test/phantom_hooks.js ./test/.index_coverage.html && istanbul report --root ./coverage html",
"coverage-run": "npm run coverage-clean && npm run coverage-sed && npm run coverage-instrument && npm run coverage-report"
},
"repository": {
"type": "git",
"url": "/~https://github.com/terrestris/momo3-frontend.git"
},
"bugs": {
"url": "/~https://github.com/terrestris/momo3-frontend/issues"
},
"homepage": "/~https://github.com/terrestris/momo3-frontend#readme",
"dependencies": {
"eslint": "3.0.1",
"expect.js": "0.3.1",
"istanbul": "0.4.4",
"mocha": "2.5.3",
"mocha-phantomjs": "4.1.0",
"sinon": "1.17.4"
},
"devDependencies": {
"eslint": "^3.0.1"
}
}