-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
50 lines (50 loc) · 2 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
{
"name": "gpii-linux",
"description": "Components of the GPII personalization infrastructure for use on Linux",
"version": "0.3.0",
"author": "GPII",
"bugs": "http://issues.gpii.net/browse/GPII",
"homepage": "http://gpii.net/",
"dependencies": {
"universal": "GPII/universal#08b73b801826be40f5516358b463d10d71260e9d"
},
"devDependencies": {
"fluid-grunt-eslint": "18.1.1",
"grunt": "1.0.1",
"grunt-jsonlint": "1.0.4",
"grunt-shell": "1.3.0",
"istanbul": "git://github.com/the-t-in-rtf/istanbul#828eb930add7bd663ca20649a917f3f3829e48c5",
"nan": "2.4.0",
"node-jqunit": "1.1.7",
"rimraf": "2.6.1"
},
"license": "BSD-3-Clause",
"keywords": [
"gpii",
"accessibility",
"settings",
"fluid",
"IoC",
"Inversion of Control",
"configuration",
"evented"
],
"repository": "git://github.com/GPII/linux.git",
"main": "./gpii/index.js",
"engines": {
"node": ">=4.2.1"
},
"scripts": {
"pretest": "node node_modules/rimraf/bin.js coverage/* reports/*",
"test": "npm run test:unit && npm run test:acceptance",
"test:unit": "npm run test:unit:pretest && npm run test:unit:run && npm run test:unit:posttest",
"test:unit:pretest": "/usr/bin/bash ./gpii/node_modules/gsettingsBridge/tests/scripts/pretest.sh",
"test:unit:run": "node node_modules/istanbul/lib/cli.js cover tests/UnitTests.js --include-pid",
"test:unit:posttest": "/usr/bin/bash ./gpii/node_modules/gsettingsBridge/tests/scripts/posttest.sh",
"test:acceptance": "node node_modules/istanbul/lib/cli.js cover tests/AcceptanceTests.js --include-pid",
"test:vagrant": "vagrant ssh -c 'cd /home/vagrant/sync; npm install && DISPLAY=:0 npm test'",
"test:vagrantUnit": "vagrant ssh -c 'cd /home/vagrant/sync; npm install && DISPLAY=:0 npm run test:unit'",
"test:vagrantAcceptance": "vagrant ssh -c 'cd /home/vagrant/sync; npm install && DISPLAY=:0 npm run test:acceptance'",
"posttest": "node node_modules/istanbul/lib/cli.js report lcov text-summary"
}
}