-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "ensure-oxford-commas",
"version": "0.1.0",
"description": "Ensure or discover if Oxford commas are being used in English language text.",
"main": "lib/index.js",
"files": [
"lib/"
],
"keywords": [
"Oxford",
"serial",
"comma",
"English",
"grammar"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kendaleiv/ensure-oxford-commas"
},
"scripts": {
"build": "babel -d ./ ./src",
"coverage": "jest --coverage",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"lint": "eslint src test",
"test": "jest",
"test:watch": "jest --watch",
"validate": "npm run lint && npm test",
"prepare": "npm run build && npm run validate"
},
"author": {
"name": "Ken Dale",
"email": "ken@kendaleiv.com",
"url": "https://kendaleiv.com"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.21.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^19.0.0",
"babel-plugin-transform-function-bind": "^6.5.2",
"babel-preset-es2015": "^6.3.13",
"coveralls": "^2.11.6",
"eslint": "^7.3.1",
"jest": "^19.0.0"
}
}