-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.26 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.26 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
{
"name": "@mobdata/classy",
"version": "1.0.1",
"description": "Module for comparing classifications",
"main": "index.js",
"repository": "https://github.com/mobdata/classy/",
"contributors": [
{
"name": "Marita Carballo",
"email": "MaritaRCarballo@gmail.com"
},
{
"name": "Timothy McKernan",
"email": "timbitsandbytes@gmail.com"
},
{
"name": "Gabriel Lake",
"email": "Gabe.Lake@jacobs.com"
}
],
"license": "MIT",
"scripts": {
"build": "babel index.es6.js --out-file index.js",
"lint": "eslint index.es6.js",
"test": "npm run build; npx ava test.js"
},
"pre-commit": [
"test",
"lint"
],
"ava": {
"files": [
"test.js"
],
"verbose": true
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"ava": "^3.12.1",
"babel-eslint": "^10.1.0",
"babel-preset-env": "^1.7.0",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"kind-of": ">=6.0.3",
"minimist": ">=1.2.5",
"pre-commit": "^1.2.2"
}
}