forked from GPII/universal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 4.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "universal",
"description": "Cross platform, core components of the GPII personalization infrastructure.",
"version": "0.3.0",
"author": "GPII",
"bugs": "http://issues.gpii.net/browse/GPII",
"homepage": "http://gpii.net/",
"dependencies": {
"body-parser": "1.17.2",
"connect-ensure-login": "0.1.1",
"express": "4.15.3",
"express-handlebars": "3.0.0",
"express-session": "1.15.4",
"fluid-resolve": "1.3.0",
"glob": "7.1.2",
"gpii-pouchdb": "1.0.7",
"infusion": "3.0.0-dev.20170727T125648Z.47055ca",
"ini": "git://github.com/GPII/ini.git#be8a04aa22f5ad9321ebcbba7740314a53bc8ab2",
"json5": "0.5.1",
"kettle": "1.6.4",
"node-jqunit": "1.1.6",
"node-uuid": "1.4.8",
"mkdirp": "0.5.1",
"oauth2orize": "1.8.0",
"passport": "0.3.2",
"passport-local": "1.0.0",
"passport-oauth2-client-password": "0.1.2",
"rimraf": "2.6.1",
"semver": "5.4.0",
"write-file-atomic": "2.1.0",
"xml-mapping": "1.7.1"
},
"devDependencies": {
"browserify": "14.4.0",
"fluid-grunt-eslint": "18.1.2",
"fluid-grunt-json5lint": "1.0.0",
"gpii-testem": "1.0.0-dev.20170426T161352Z.8a06597",
"grunt": "1.0.1",
"grunt-jsonlint": "1.1.0",
"http-browserify": "1.7.0",
"https-browserify": "1.0.0",
"istanbul": "git://github.com/the-t-in-rtf/istanbul#828eb930add7bd663ca20649a917f3f3829e48c5",
"nyc": "10.1.2",
"recursive-copy": "2.0.6",
"testem": "1.16.1"
},
"license": "BSD-3-Clause",
"keywords": [
"gpii",
"accessibility",
"settings",
"fluid",
"IoC",
"Inversion of Control",
"configuration",
"evented"
],
"repository": "git://github.com/GPII/universal.git",
"main": "./index.js",
"engines": {
"node": ">=4.2.1"
},
"scripts": {
"pretest": "npm run pretest:clean && npm run pretest:instrument && npm run pretest:copyUninstrumentedCode",
"pretest:clean": "node node_modules/rimraf/bin.js reports/* coverage/* instrumented/* .nyc_output/*",
"pretest:instrument": "npm run pretest:instrumentNodeModules && npm run pretest:instrumentConfigs",
"pretest:instrumentNodeModules": "node node_modules/istanbul/lib/cli.js instrument --complete-copy -o instrumented/universal/gpii/node_modules gpii/node_modules -x '**/lib/**' -x 'testing/**' -x 'tests/**'",
"pretest:instrumentConfigs": "node node_modules/istanbul/lib/cli.js instrument --complete-copy -o instrumented/universal/gpii/configs gpii/configs",
"pretest:copyUninstrumentedCode": "node scripts/copyUninstrumentedCode.js",
"test": "npm run test:node-noprep && npm run test:browser-noprep",
"test:browser-noprep": "node node_modules/testem/testem.js ci --file tests/testem.js --skip PhantomJS,IE",
"test:browser": "npm run pretest:instrument && npm run pretest:copyUninstrumentedCode && npm run test:browser-noprep",
"test:node-noprep": "node_modules/.bin/nyc --reporter=json node tests/all-tests.js",
"test:node": "npm run pretest:instrument && npm run pretest:copyUninstrumentedCode && npm run test:node-noprep",
"test:production": "node tests/ProductionConfigTests.js",
"test:vagrant": "vagrant ssh -c 'cd /home/vagrant/sync/universal; DISPLAY=:0; npm test'",
"test:vagrantBrowser": "vagrant ssh -c 'cd /home/vagrant/sync/universal; DISPLAY=:0; npm run test:browser'",
"test:vagrantNode": "vagrant ssh -c 'cd /home/vagrant/sync/universal; npm run test:node'",
"test:vagrantProduction": "vagrant ssh -c 'cd /home/vagrant/sync/universal; DISPLAY=:0; ./scripts/vagrantCloudBasedContainers.sh && GPII_FLOWMANAGER_PREFERENCES_URL=http://localhost:9081/preferences/%userToken npm run test:production'",
"posttest": "node node_modules/istanbul/lib/cli.js report --root coverage --dir reports text-summary html",
"start": "node gpii.js",
"postinstall": "node scripts/browserifyTestDependency.js"
}
}