-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 2.93 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@laces/laces",
"version": "1.1.0",
"description": "Common string utilties written in JavaScript",
"main": "index.js",
"scripts": {
"help": "gulp help",
"create": "gulp create --name",
"link": "lerna bootstrap",
"clean": "lerna clean --yes",
"nuke": "npm run clean && lerna exec -- rm -rf ./dist",
"build": "gulp build",
"rebuild": "npm run nuke && npm run build && npm run link",
"lint": "eslint -c .eslintrc packages",
"test": "nyc ava",
"report": "nyc report --reporter=html",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs": "inchjs list --all",
"bundlesize": "bundlesize",
"start": "cd ./docs && npm start",
"deploy:docs": "cd ./docs && npm run deploy",
"postinstall": "npm run link"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walkerrandolphsmith/laces.git"
},
"keywords": [
"javascript",
"strings",
"string",
"library",
"lib"
],
"author": "[email protected]",
"contributors": [
],
"license": "ISC",
"bugs": {
"url": "https://github.com/walkerrandolphsmith/laces/issues"
},
"homepage": "https://github.com/walkerrandolphsmith/laces#readme",
"devDependencies": {
"ava": "^0.23.0",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-preset-stage-3": "^6.5.0",
"bundlesize": "^0.15.3",
"coveralls": "^3.0.0",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-uglify": "^3.0.0",
"husky": "^0.14.3",
"inchjs": "^0.4.1",
"lerna": "^2.0.0-rc.4",
"mkdirp": "^0.5.1",
"nyc": "^11.3.0",
"require-dir": "^0.3.2",
"uglify-js": "^3.1.0"
},
"bundlesize": [
{
"path": "./packages/**/dist/index.js",
"maxSize": "3 kB"
}
],
"babel": {
"presets": [
"es2015",
"stage-3",
"stage-2",
"stage-1",
"stage-0"
],
"plugins": [
[
"transform-runtime",
{
"polyfill": false,
"regenerator": true
}
]
]
},
"engines": {
"node": "4.1.1"
},
"ava": {
"files": [
"packages/**/*.test.js"
],
"source": [
"packages/**/*.js"
],
"match": [],
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false,
"tap": true,
"powerAssert": false,
"require": [
"babel-register",
"babel-polyfill"
],
"babel": "inherit"
},
"nyc": {
"exclude": [
"**/dist/index.js",
"**/*.test.js"
]
}
}