-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 3.01 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "trust1connector",
"version": "2.4.3",
"description": "The Trust1Connector library (T1C-Lib), is a javascript library to communicate with the Trust1Connector. The library simplifies the execution to the connector and works asynchronously.",
"main": "dist/GCLLib.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"clean-dist": "shx rm -rf dist",
"clean-ts": "shx rm -rf lib lib-esm",
"clean-all": "shx rm -rf dist lib lib-esm",
"ts": "tsc && tsc -m es6 --outDir lib-esm",
"test": "yarn jest -i",
"build-all": "npm run clean-all && npm run ts && webpack --mode=none --progress",
"build-ts": "npm run clean-ts && npm run ts",
"build-dev": "npm run clean-dist && webpack --mode development --progress",
"build-prod": "npm run clean-dist && webpack --mode production --progress"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:Trust1Team/t1c-lib-js.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"setupTestFrameworkScriptFile": "<rootDir>/src/setupJest.ts",
"testPathIgnorePatterns": [
"/node_modules/",
"/src/test/unit/plugins/smartcards/pkcs11/pkcs11.spec.ts"
],
"verbose": true,
"testURL": "https://localhost:34752"
},
"author": "Trust1Team",
"license": "SEE LICENSE IN license.txt",
"homepage": "https://github.com/Trust1Team/t1c-lib-js",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/debug": "^0.0.30",
"@types/es6-promise": "^3.3.0",
"@types/form-data": "^2.2.1",
"@types/jest": "^23.3.1",
"@types/jwt-decode": "^2.2.1",
"@types/pkijs": "^0.0.1",
"@types/platform": "^1.3.1",
"asn1js": "^2.0.21",
"axios-mock-adapter": "^1.15.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"del": "^3.0.0",
"dts-bundle": "^0.7.3",
"jest": "^23.4.2",
"jest-extended": "^0.8.1",
"shx": "^0.3.2",
"ts-jest": "^23.0.1",
"ts-loader": "^4.4.2",
"tslint": "^5.11.0",
"typescript": "^3.3.4000",
"uglify-js": "^3.4.5",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.3",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-stream": "^5.0.0"
},
"dependencies": {
"Base64": "^1.0.1",
"axios": "^0.18.0",
"bases": "^0.2.1",
"core-js": "^2.5.3",
"cuid": "^1.3.8",
"es6-object-assign": "^1.1.0",
"form-data": "^2.3.1",
"jsencrypt": "^3.0.0-rc.1",
"jwt-decode": "^2.2.0",
"moment": "^2.20.1",
"object-assign": "^4.1.1",
"path": "^0.12.7",
"pkijs": "2.0.56",
"platform": "^1.3.5",
"semver": "^5.4.1",
"sha256": "^0.2.0",
"store2": "^2.7.0",
"uuid": "^3.3.2"
}
}