-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 832 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
{
"name": "task-list",
"description": "Simple utility library for managing a list of tasks and their lifecycle.",
"keywords": [
"data",
"models",
"types",
"data-modeling",
"modeling"
],
"browser": {
"./nextTick.js": "./nextTick_browser.js"
},
"homepage": "https://github.com/philidem/task-list",
"repository": {
"type": "git",
"url": "https://github.com/philidem/task-list.git"
},
"author": "Phil Gates-Idem <[email protected]",
"scripts": {
"test": "node_modules/.bin/mocha --ui bdd --reporter spec ./test"
},
"main": "./index.js",
"devDependencies": {
"chai": "^3.4.0",
"mocha": "^2.3.3"
},
"dependencies": {
"raptor-async": "^1.1.2"
},
"version": "1.0.6"
}