-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
62 lines (62 loc) · 2.03 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
{
"name": "gpii-windows",
"description": "Components of the GPII personalization infrastructure for use on Microsoft's \"Windows\" ™",
"version": "0.3.0",
"author": "GPII",
"bugs": "http://issues.gpii.net/browse/GPII",
"homepage": "http://gpii.net/",
"scripts": {
"pretest": "node node_modules/rimraf/bin.js coverage/* reports/*",
"service": "npm --prefix ./gpii-service/ run service-dev",
"start": "npm run service && node ./gpii.js",
"test": "npm run test:refreshenv && npm run test:unit && npm run test:acceptance",
"test:refreshenv": "refreshenv",
"test:acceptance": "set GPII_TEST_COUCH_USE_EXTERNAL=TRUE && nyc node.exe ./tests/AcceptanceTests.js builtIn",
"test:unit": "node_modules/.bin/nyc node.exe ./tests/UnitTests.js",
"posttest": "node_modules/.bin/nyc report -r html -r text-summary",
"install": "powershell -ExecutionPolicy Bypass provisioning/NpmInstall.ps1"
},
"dependencies": {
"edge-js": "10.3.1",
"ffi-napi": "2.4.3",
"gpii-universal": "0.3.0-dev.20200604T131823Z.d6fed9a",
"@pokusew/pcsclite": "0.4.18",
"ref": "1.3.4",
"ref-struct": "1.1.0",
"ref-array": "1.1.2",
"string-argv": "0.0.2",
"rimraf": "2.6.2",
"win-ca": "3.1.1"
},
"devDependencies": {
"eslint-config-fluid": "1.3.0",
"express": "4.16.3",
"fluid-grunt-eslint": "18.1.2",
"gpii-grunt-lint-all": "1.0.5",
"grunt": "1.0.3",
"lodash": "4.17.15",
"node-jqunit": "1.1.8",
"nyc": "14.1.1",
"rimraf": "2.6.2",
"shelljs": "0.8.1"
},
"os": [
"win32"
],
"license": "BSD-3-Clause",
"keywords": [
"gpii",
"accessibility",
"settings",
"fluid",
"IoC",
"Inversion of Control",
"configuration",
"evented"
],
"repository": "git://github.com/GPII/windows.git",
"main": "./index.js",
"engines": {
"node": ">=6.3.1"
}
}