-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.38 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
{
"name": "tzinfo_js",
"version": "0.1.0",
"description": "Pure-JS TZInfo Rails Gem",
"main": "lib/assets/javascripts/tzinfo_js/tzinfo.js",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "eslint src",
"lint:fix": "pnpm run lint -- --fix || :",
"build:dev-support": "babel dev/src --out-dir dev/lib --extensions \".js,.jsx,.ts,.tsx\" --no-copy-ignored",
"build:lib": "babel src --out-dir lib --extensions \".js,.jsx,.ts,.tsx\" --copy-files --no-copy-ignored",
"build": "pnpm run build:lib ; pnpm run build:dev-support",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riboseinc/tzinfo_js.git"
},
"keywords": [
"timezone-library",
"timezone"
],
"author": "Ribose Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/riboseinc/tzinfo_js/issues"
},
"homepage": "https://github.com/riboseinc/tzinfo_js#readme",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-function-bind": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-proposal-partial-application": "^7.14.5",
"@babel/plugin-proposal-pipeline-operator": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/plugin-transform-typescript": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@babel/register": "^7.14.5",
"@babel/runtime": "^7.14.6",
"@babel/types": "^7.14.5",
"@types/glob": "^7.1.3",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.1",
"babel-plugin-module-resolver": "^4.1.0",
"core-js": "^3.15.1",
"eslint": "^7.29.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"fork-ts-checker-webpack-plugin": "^6.2.12",
"terser-webpack-plugin": "^5.1.3",
"typescript": "^4.3.4",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2"
}
}