-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
46 lines (46 loc) · 1.13 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": "remark-codesandbox-mono",
"version": "0.0.0",
"author": "Kai Hao",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kevin940726/remark-codesandbox.git"
},
"scripts": {
"test:node": "jest --env node",
"test:browser": "jest --env jsdom",
"test": "yarn test:node && yarn test:browser",
"build": "yarn workspaces foreach run build",
"example": "yarn workspaces foreach run build-example",
"bump": "yarn workspace remark-codesandbox version",
"prerelease": "yarn build && yarn test",
"release": "yarn workspace remark-codesandbox npm publish"
},
"devDependencies": {
"dedent": "^0.7.0",
"escape-string-regexp": "^4.0.0",
"jest": "^24.9.0",
"jest-pnp-resolver": "^1.2.1",
"prettier": "1.19.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"resolver": "jest-pnp-resolver",
"setupFilesAfterEnv": [
"<rootDir>/setup-test.js"
],
"testPathIgnorePatterns": [
"node_modules",
".cache"
]
}
}