-
Notifications
You must be signed in to change notification settings - Fork 172
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "@frctl/fractal",
"private": true,
"license": "MIT",
"contributors": [
"Mark Perkins <mark@allmarkedup.com> (http://allmarkedup.com)",
"Danielle Huntrods <danielle.huntrods@clearleft.com> (http://clearleft.com)",
"Paul Lloyd (https://github.com/paulrobertlloyd)"
],
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"lerna": "lerna",
"test": "yarn run lint:fix && nyc yarn run test:unit",
"test:ci": "yarn run bootstrap && nyc yarn run test:unit && nyc report --reporter=text-lcov | coveralls",
"test:unit": "mocha \"./{,!(node_modules)/**/}*.test.js\" --recursive --require test/support/env",
"test:watch": "yarn run test:unit -- --watch",
"lint": "xo",
"lint:fix": "xo --fix",
"bootstrap": "lerna bootstrap"
},
"devDependencies": {
"@frctl/eslint-config-frctl": "^0.1.2",
"ajv": "^5.2.2",
"ajv-keywords": "^2.1.0",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"chai-http": "^3.0.0",
"chai-sorted": "^0.1.0",
"coveralls": "^2.13.1",
"lerna": "^2.4.0",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"proxyquire": "^1.8.0",
"sinon": "^4.0.0",
"xo": "^0.17.1",
"yarn": "^1.2.1"
},
"xo": {
"extends": "@frctl/eslint-config-frctl",
"ignores": [
"**/dist/*"
]
}
}