forked from nytimes/kyt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 2.03 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
{
"private": true,
"version": "0.0.0",
"description": "<p align=\"center\"><img src=\"/images/kyt-logo-large.png\"></p>",
"main": "index.js",
"author": "NYTimes",
"license": "Apache-2.0",
"repository": "git+https://github.com/nytimes/kyt",
"bugs": "https://github.com/nytimes/kyt/issues",
"homepage": "https://github.com/nytimes/kyt#readme",
"directories": {
"doc": "docs"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/packages/kyt-starter-*",
"<rootDir>/packages/kyt-core/cli/actions/test.js",
"<rootDir>/e2e_tests"
],
"collectCoverageFrom": [
"**/*.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/packages/*/node_modules",
"<rootDir>/packages/kyt-starter-*",
"<rootDir>/coverage",
"<rootDir>/packages/kyt-core/utils/jest"
]
},
"scripts": {
"bootstrap": "npm i && lerna bootstrap",
"clean-bootstrap": "rm -rf node_modules && npm i && lerna clean --yes && npm run bootstrap",
"publish-pre": "lerna publish --exact --npm-tag=pre --canary=alpha",
"publish-next": "lerna publish --exact --npm-tag=next --canary=beta",
"publish-release": "lerna publish --exact --message",
"test": "jest && cd packages/kyt-starter-universal/starter-src && node_modules/.bin/kyt test && cd ../../kyt-starter-static/starter-src && node_modules/.bin/kyt test",
"test-update": "jest -u && cd packages/kyt-starter-universal/starter-src && node_modules/.bin/kyt test -- -u && cd ../../kyt-starter-static/starter-src && node_modules/.bin/kyt test -- -u",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage",
"e2e": "jest --config ./e2e_tests/jest.config.json --verbose --no-cache",
"lint": "packages/kyt-core/node_modules/.bin/eslint ./",
"lint-fix": "packages/kyt-core/node_modules/.bin/eslint ./ --fix"
},
"devDependencies": {
"lerna": "^2.0.0",
"eslint-config-kyt": "file:packages/eslint-config-kyt",
"eslint-plugin-kyt": "file:packages/eslint-plugin-kyt"
},
"dependencies": {}
}