-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
31 lines (30 loc) · 828 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
{
"name": "eslint-plugin-immutable",
"version": "1.0.0",
"description": "ESLint plugin to disable all mutation in JavaScript.",
"main": "index.js",
"scripts": {
"test": "mocha --recursive -s 15 test/",
"test-coverage": "istanbul cover _mocha -- --recursive",
"open-coverage": "open coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhusain/eslint-plugin-immutable.git"
},
"keywords": [
"eslint",
"immutability"
],
"devDependencies": {
"eslint": "2.11.0",
"istanbul": "0.4.3",
"mocha": "2.5.3"
},
"author": "Jafar Husain",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jhusain/eslint-plugin-immutable/issues"
},
"homepage": "https://github.com/jhusain/eslint-plugin-immutable#readme"
}