-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.45 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.45 KB
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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@aureooms/js-fliplist",
"description": "Flip list data structure for JavaScript",
"version": "0.0.1",
"author": "aureooms",
"ava": {
"require": [
"babel-polyfill",
"babel-register"
]
},
"babel": {
"presets": [
"env"
],
"env": {
"development": {
"sourceMaps": "inline"
}
}
},
"bugs": {
"url": "https://github.com/make-github-pseudonymous-again/js-fliplist/issues"
},
"dependencies": {},
"devDependencies": {
"@aureooms/js-itertools": "^3.4.0",
"ava": "^0.23.0",
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"codeclimate-test-reporter": "^0.5.0",
"coveralls": "^3.0.0",
"esdoc": "^1.0.4",
"esdoc-inject-script-plugin": "^1.0.0",
"esdoc-inject-style-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"nyc": "^11.3.0"
},
"homepage": "https://make-github-pseudonymous-again.github.io/js-fliplist",
"keywords": [
"delete",
"flip",
"insert",
"iterator",
"linked",
"list",
"merge",
"reverse"
],
"license": "AGPL-3.0",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/make-github-pseudonymous-again/js-fliplist"
},
"scripts": {
"build": "rm -rf lib && babel src -d lib",
"cover": "nyc --reporter=lcov npm test",
"esdoc": "esdoc",
"prepublish": "npm run build",
"test": "ava ./test/src"
}
}