-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.33 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
{
"name": "jolt",
"private": true,
"license": "MIT",
"engines": {
"node": ">=4",
"yarn": ">=1.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"coveralls": "^2.13.1",
"eslint": "^4.4.1",
"eslint-plugin-jest": "^21.0.2",
"husky": "^0.14.3",
"jest": "^21.0.0-beta.1",
"lerna": "^2.0.0",
"lint-staged": "^4.0.3",
"rimraf": "^2.6.1"
},
"babel": {
"presets": [
[
"./packages/babel-preset-jolt/src/getPreset.js",
{
"target": "node"
}
]
]
},
"eslintIgnore": [
"build",
"coverage",
"node_modules"
],
"eslintConfig": {
"extends": "./packages/eslint-config-jolt/src/config.js"
},
"jest": {
"preset": "jest-preset-jolt",
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"yarn lint"
]
},
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"clean": "lerna clean --yes && lerna run clean",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"jolt": "node ./packages/jolt-cli/build/jolt.js",
"lint": "eslint .",
"lint:cached": "yarn lint --cache",
"precommit": "lint-staged",
"test": "jest",
"test:build": "yarn run build && yarn run test",
"test:coverage": "yarn test --coverage"
}
}