-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.02 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "lazy-linked-lists",
"description": "Lazy and infinite linked lists for JavaScript.",
"author": "Steven J. Syrek",
"license": "ISC",
"homepage": "https://github.com/sjsyrek/lazy-linked-lists",
"repository": {
"type": "git",
"url": "https://github.com/sjsyrek/lazy-linked-lists.git"
},
"bugs": {
"url": "https://github.com/sjsyrek/lazy-linked-lists/issues"
},
"keywords": [
"linked",
"lists",
"lazy",
"infinite",
"data",
"structures",
"babel",
"es6",
"es2015",
"proxy",
"haskell",
"functional",
"fp"
],
"main": "./distribution/index.js",
"directories": {
"lib": "distribution",
"test": "test",
"example": "example"
},
"engines": {
"node": ">=6.0.0"
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"standard": {
"ignore": [
"distribution"
],
"env": [
"mocha"
]
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-plugin-istanbul": "^2.0.0",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.11.6",
"bithound": "^1.7.0",
"codeclimate-test-reporter": "^0.4.0",
"cross-env": "^3.1.0",
"eslint": "^3.6.0",
"mocha": "^3.0.2",
"nyc": "^8.1.0",
"semantic-release": "^4.3.5",
"should": "^11.1.0",
"standard": "^8.4.0"
},
"dependencies": {
"babel-runtime": "^6.11.6"
},
"scripts": {
"clean": "rm -r distribution/*",
"compile": "babel source --out-dir distribution",
"lint": "eslint source",
"test": "cross-env NODE_ENV=test mocha --compilers js:babel-register",
"watch": "npm test -- --watch",
"cover": "nyc --reporter html --reporter text -- npm -s test",
"cover:report": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov",
"prepublish": "npm run compile",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"standard": "standard",
"fix": "standard --fix"
}
}