-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 878 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 878 Bytes
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
{
"name": "timeweb",
"version": "0.4.0-prerelease",
"description": "Overwrite time in browser",
"repository": {
"type": "git",
"url": "https://github.com/tungs/timeweb.git"
},
"author": {
"name": "Steve Tung"
},
"main": "src/index.js",
"browser": "dist/timeweb.js",
"files": [
"dist/",
"src/"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"lint": "eslint *.js './src/**/*.js' './test/**/*.js'",
"test": "mocha --colors test/init.js './test/{!(pages)/**,}/*.js'"
},
"license": "BSD-3-Clause",
"devDependencies": {
"@rollup/plugin-json": "6.0.0",
"@rollup/plugin-terser": "0.4.1",
"@rollup/plugin-typescript": "11.1.0",
"typescript": "5.0.4",
"tslib": "2.5.0",
"eslint": "8.39.0",
"chai": "^4.3.6",
"mocha": "^9.2.0",
"playwright": "^1.18.1",
"rollup": "^2.66.0"
}
}