-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.29 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
84
85
86
87
88
89
90
91
92
{
"name": "farm-life",
"version": "0.0.4",
"description": "Prepend/append string X (or ensure string X is prepended/appended) to each occurrence of string Y in string Z",
"main": "lib/index.js",
"files": [
"dist",
"lib",
"index.js"
],
"dependencies": {
"escape-string-regexp": "^1.0.5"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"coveralls": "^2.11.12",
"cross-env": "^1.0.8",
"husky": "^0.13.3",
"nyc": "^7.1.0",
"rimraf": "^2.5.3",
"standard": "^10.0.2",
"webpack": "^1.13.1"
},
"scripts": {
"clean": "rimraf dist lib",
"test": "ava",
"check": "standard && npm test",
"coverage": "nyc npm test",
"report-coverage": "cat coverage/lcov.info | coveralls",
"build:commonjs": "babel index.js --out-dir lib",
"build:umd": "cross-env NODE_ENV=development webpack --display-modules index.js dist/farm-life.js",
"build:umd:min": "cross-env NODE_ENV=production webpack --display-modules index.js dist/farm-life.min.js",
"build": "npm run clean && npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"prepublish": "npm run check && npm run build",
"precommit": "standard",
"prepush": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/danne931/farm-life.git"
},
"author": "Daniel Eisenbarger <[email protected]> (https://github.com/danne931)",
"license": "MIT",
"bugs": {
"url": "https://github.com/danne931/farm-life/issues"
},
"keywords": [
"prepend string",
"append string",
"append",
"prepend",
"string",
"manipulate string",
"manipulate strings",
"string manipulation",
"string parsing",
"text parsing",
"haystack",
"needle in haystack",
"farm",
"farm life"
],
"standard": {
"parser": "babel-eslint"
},
"ava": {
"files": [
"test"
],
"failFast": "true",
"verbose": "true",
"require": [
"babel-core/register"
]
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"check-coverage": true
}
}