-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "superset",
"version": "2.0.1",
"description": "A library that provides the missing Set methods such as map and filter.",
"main": "index.js",
"engineStrict": true,
"engines": {
"node": ">= 4.0.0"
},
"dependencies": {},
"devDependencies": {
"chai": "^3.4.0",
"coveralls": "^2.11.4",
"dirty-chai": "^1.2.2",
"eslint": "^2.4.0",
"eslint-plugin-markdown": "1.0.0-beta.1",
"istanbul": "^0.4.0",
"mocha": "^2.3.3",
"remark": "^4.2.2",
"remark-lint": "^2.1.0",
"remark-lint-no-empty-sections": "^1.0.0",
"remark-validate-links": "^2.0.2"
},
"scripts": {
"pretest": "eslint --ext \"js\" --ignore-path .gitignore . && remark -q --frail --no-stdout .",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/BYK/superset.git"
},
"keywords": [
"Set",
"ES6",
"ES2015",
"functional",
"map",
"filter",
"set"
],
"author": "Burak Yigit Kaya <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BYK/superset/issues"
},
"homepage": "https://github.com/BYK/superset#readme"
}