forked from nytimes/kyt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.57 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
{
"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": "node bootstrap.js",
"update": "type=install npm run bootstrap",
"clean": "node clean.js",
"test": "jest && cd packages/kyt-starter-universal/starter-src && node_modules/kyt/cli/index.js test && cd ../../kyt-starter-static/starter-src && node_modules/kyt/cli/index.js test",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage",
"clean-e2e": "yarn cache clean && yarn run e2e",
"e2e": "jest --config ./e2e_tests/jest.config.json --verbose --no-cache",
"lint": "packages/kyt-core/node_modules/.bin/eslint ./"
},
"dependencies": {
"babel-eslint": "^7.1.1",
"jest": "19.0.2",
"ps-tree": "1.1.0",
"semver": "5.3.0",
"shelljs": "0.7.5"
}
}