-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 833 Bytes
/
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
{
"name": "blocks",
"version": "2.0.0",
"description": "Split long blocking tasks into smaller blocks",
"main": "lib/blocks.js",
"directories": {
"example": "examples",
"test": "test"
},
"devDependencies": {
"babel": "^5.8.12",
"chai": "^3.2.0",
"mocha": "^2.2.5"
},
"scripts": {
"test": "mocha --require ./babelinit.js",
"pretest": "npm run build",
"build": "mkdir -p lib; node_modules/.bin/babel src/blocks.js > lib/blocks.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dominataa/blocks.git"
},
"keywords": [
"blocking",
"blocks",
"timeslice"
],
"author": "Dom Armstrong",
"license": "ISC",
"bugs": {
"url": "https://github.com/dominataa/blocks/issues"
},
"homepage": "https://github.com/dominataa/blocks#readme"
}