-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.31 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.31 KB
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
{
"name": "@datarangers/sdk-javascript",
"version": "0.1.3",
"scripts": {
"nclean": "rimraf es lib core",
"build": "export NODE_ENV=production && npm run nclean && npx rollup -c rollup.config.js",
"build-core": "export NODE_ENV=production && npx rollup -c rollup.config.polyfill.js"
},
"main": "lib/index.min.js",
"module": "es/index.min.js",
"types": "./types/types.d.ts",
"license": "ISC",
"dependencies": {
"sm-crypto": "^0.3.12"
},
"files": [
"es",
"lib",
"types",
"core"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.0",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-transform-arrow-functions": "^7.17.12",
"@babel/plugin-transform-classes": "^7.17.12",
"@babel/plugin-transform-destructuring": "^7.18.0",
"@babel/plugin-transform-parameters": "^7.17.12",
"@babel/plugin-transform-shorthand-properties": "^7.16.7",
"@babel/plugin-transform-spread": "^7.7.4",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "7.6.3",
"@babel/preset-flow": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@babel/types": "^7.18.0",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"babel-plugin-transform-es2015-sticky-regex": "^6.24.1",
"babel-plugin-transform-remove-strict-mode": "^0.0.2",
"colors": "^1.4.0",
"core-js": "^3.22.6",
"cross-env": "^7.0.3",
"escape-string-regexp": "^5.0.0",
"eslint": "^8.16.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-typescript": "^0.14.0",
"rimraf": "^3.0.2",
"rollup": "^2.74.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-strip": "^1.2.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-lint": "^4.5.1",
"tslib": "^2.1.0",
"typescript": "^3.2.2",
"typescript-eslint-parser": "^22.0.0"
}
}