-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.14 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
{
"name": "ds-linked-list",
"version": "1.0.0",
"description": "Linked list data structure",
"main": "index.js",
"repository": "ngryman/ds-linked-list",
"author": "Nicolas Gryman <[email protected]> (http://ngryman.sh/)",
"license": "MIT",
"scripts": {
"lint": "meta lint",
"pretest": "npm run lint -s",
"test": "meta test",
"dev": "meta dev",
"coverage": "meta coverage",
"see-coverage": "meta see-coverage",
"check-coverage": "meta check-coverage",
"docs": "documentation readme index.js --section=API",
"prebuild": "npm run lint -s",
"build": "meta build",
"prepublish": "npm run build -s",
"precommit": "npm run docs -s"
},
"dependencies": [],
"devDependencies": {
"documentation": "^4.0.0-beta.18",
"meta-dev": "^0.4.2"
},
"eslintConfig": {
"extends": "ngryman"
},
"ava": {
"concurrency": 4,
"require": [
"babel-register"
]
},
"babel": {
"env": {
"test": {
"presets": [
"node5"
],
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"sourceMap": false,
"instrument": false
}
}