@turnai/turn-shared 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/turn-shared.js +6193 -42135
- package/lib/turn-shared.min.js +3 -297
- package/package.json +8 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turnai/turn-shared",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Shared library for Turn mobile and web apps — API client, styles, and utilities.",
|
|
5
5
|
"main": "lib/turn-shared.js",
|
|
6
6
|
"files": [
|
|
@@ -14,15 +14,15 @@
|
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build": "webpack --env dev && webpack --env build && npm run test",
|
|
16
16
|
"prepublishOnly": "webpack --env dev && webpack --env build",
|
|
17
|
-
"test": "jest"
|
|
17
|
+
"test": "jest",
|
|
18
|
+
"analyze": "cross-env ANALYZE=1 webpack --env build"
|
|
18
19
|
},
|
|
19
20
|
"dependencies": {
|
|
20
21
|
"@turnai/validate-us-drivers-license": "0.0.2",
|
|
21
|
-
"Base64": "^1.0.1",
|
|
22
22
|
"apisauce": "^0.12.0",
|
|
23
|
-
"
|
|
23
|
+
"Base64": "^1.0.1",
|
|
24
|
+
"dayjs": "^1.11.20",
|
|
24
25
|
"lodash": "^4.17.15",
|
|
25
|
-
"moment": "^2.22.2",
|
|
26
26
|
"style-loader": "^1.0.1"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
@@ -33,11 +33,13 @@
|
|
|
33
33
|
"babel-loader": "^8.2.3",
|
|
34
34
|
"babel-plugin-add-module-exports": "^0.2.1",
|
|
35
35
|
"babel-plugin-istanbul": "^5.1.0",
|
|
36
|
+
"babel-plugin-lodash": "^3.3.4",
|
|
36
37
|
"babel-preset-env": "^7.0.0-beta.3",
|
|
37
38
|
"babel-register": "^7.0.0-beta.3",
|
|
38
39
|
"chai": "^4.3.6",
|
|
39
40
|
"chai-enzyme": "1.0.0-beta.0",
|
|
40
41
|
"cross-env": "^5.2.0",
|
|
42
|
+
"css-loader": "^3.2.1",
|
|
41
43
|
"enzyme": "^3.3.0",
|
|
42
44
|
"enzyme-adapter-react-16": "^1.15.6",
|
|
43
45
|
"jest": "^24.9.0",
|
|
@@ -50,6 +52,7 @@
|
|
|
50
52
|
"uglifyjs-webpack-plugin": "^1.2.7",
|
|
51
53
|
"webpack": "^4.46.0",
|
|
52
54
|
"webpack-cli": "^3.3.12",
|
|
55
|
+
"webpack-bundle-analyzer": "^4.9.0",
|
|
53
56
|
"yargs": "^10.0.3"
|
|
54
57
|
},
|
|
55
58
|
"nyc": {
|