-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 732 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 732 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
{
"name": "time-slicing",
"version": "1.0.0",
"description": "Break down long tasks into smaller tasks, avoid blocking the main process.",
"main": "index.js",
"scripts": {
"build": "rollup -c scripts/config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/berwin/time-slicing.git"
},
"keywords": [
"time-slicing"
],
"author": "Berwin <liubowen.niubi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/berwin/time-slicing/issues"
},
"homepage": "https://github.com/berwin/time-slicing#readme",
"devDependencies": {
"rollup": "^1.1.0",
"rollup-plugin-butternut": "^0.1.0"
}
}