forked from Netflix/pollyjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.76 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
{
"private": true,
"license": "Apache-2.0",
"repository": "https://github.com/netflix/pollyjs",
"contributors": [
{
"name": "Jason Mitchell",
"email": "[email protected]"
},
{
"name": "Offir Golan",
"email": "[email protected]"
}
],
"workspaces": ["packages/@pollyjs/*"],
"scripts": {
"commitmsg": "commitlint -E GIT_PARAMS",
"build": "lerna run build --ignore=@pollyjs/ember --parallel",
"build:watch": "npm-run-all clean watch",
"watch": "lerna run watch --ignore=@pollyjs/ember --parallel",
"clean": "lerna run clean --parallel",
"format": "lerna run format",
"lint": "lerna exec --bail=false --stream --no-prefix -- yarn run lint",
"pretest": "yarn server:build",
"pretest:ci": "yarn pretest",
"test": "testem",
"test:ci": "testem ci",
"test:build": "lerna run test:build --parallel",
"test:clean": "rimraf packages/@pollyjs/*/build",
"test:node": "mocha --opts tests/mocha.opts",
"test:jest": "jest",
"test:ember": "lerna run test --stream --no-prefix --scope=@pollyjs/ember",
"server:build":
"yarn build --scope=@pollyjs/node-server --scope=@pollyjs/utils",
"docs:serve": "docsify serve ./docs",
"docs:publish":
"gh-pages --dist docs --dotfiles --message 'chore: Publish docs'",
"release": "lerna publish",
"postrelease": "yarn docs:publish"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@commitlint/config-lerna-scopes": "^7.0.0",
"@commitlint/travis-cli": "^7.0.0",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"deepmerge": "^2.1.1",
"docsify-cli": "^4.2.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.6.2",
"formdata-polyfill": "^3.0.11",
"gh-pages": "^1.2.0",
"har-validator": "^5.1.0",
"husky": "^0.14.3",
"jest": "^23.5.0",
"jest-tap-reporter": "^1.9.0",
"lerna": "^2.11.0",
"lerna-alias": "^3.0.2",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"rollup": "^0.64.1",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-multi-entry": "^2.0.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0",
"tap-merge": "^0.3.1",
"testem": "^2.9.2"
}
}