-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
{
"name": "time-zone-converter",
"version": "3.1.1",
"description": "A Chrome extension that converts times to preferred Time Zone",
"main": "main.ts",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "mocha -r ts-node/register 'src/**/*.test.ts'",
"predev": "npm test",
"dev": "webpack --env.NODE_ENV=local",
"prebuild": "npm-run-all test lint",
"build": "webpack --env.NODE_ENV=production",
"lint": "esw webpack.config.* src --color"
},
"repository": {
"type": "git",
"url": "git+https://github.com/richardaspinall/chrome-timezone-converter.git"
},
"author": "Richard Aspinall",
"license": "ISC",
"bugs": {
"url": "https://github.com/richardaspinall/chrome-timezone-converter/issues"
},
"homepage": "https://github.com/richardaspinall/chrome-timezone-converter#readme",
"dependencies": {
"moment-locales-webpack-plugin": "^1.1.0",
"moment-timezone": "^0.5.26",
"ts-node": "^10.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "7.13.8",
"@babel/node": "^7.13.0",
"@babel/preset-env": "7.13.8",
"@babel/register": "7.13.8",
"@types/mocha": "^8.2.2",
"babel-loader": "8.2.2",
"css-loader": "^5.2.0",
"eslint": "7.21.0",
"eslint-plugin-import": "2.22.1",
"eslint-watch": "7.0.0",
"file-loader": "^6.2.0",
"mocha": "^8.3.2",
"npm-run-all": "^4.1.5",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.2",
"webpack": "^5.30.0",
"webpack-cli": "^3.3.12"
}
}