-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
73 lines (73 loc) · 2.6 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
{
"name": "cryptic-css-monorepo",
"version": "0.0.1",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"scripts": {
"test": "mhy tsc && mhy jest",
"test:watch": "mhy jest --watchAll",
"build": "npm run build:es6 && npm run build:cjs",
"build:es6": "mhy bb --mhy-env=prod",
"build:cjs": "mhy bb --mhy-env=prod:cjs",
"publish": "lerna exec \"rimraf node_modules\" && lerna exec \"npm i --force\" && lerna link && lerna run build && lerna exec \"mhy tsc\" && lerna run build && lerna publish --conventional-commits --forcePublish",
"config": "mhy config eslint prettier -io && lerna run config"
},
"mhy": {
"mhy": {
"cjs": {
"distFolder": "dist/cjs"
}
},
"babel": {
"cjs": {
"presets": [
{
"$match": {
"query": "$[?(@[0].includes('preset-env'))]",
"value": [
{
"$match": {
"index": 1,
"value": {
"modules": "commonjs",
"targets": {
"$replace": {
"node": true,
"browsers": false,
"esmodules": true
}
}
}
}
}
]
}
}
],
"plugins": [
{
"$prepend": {
"$expression": "$params.require.resolve('babel-plugin-add-module-exports')"
}
}
]
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/wintercounter/ccss.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/wintercounter/ccss/issues"
},
"homepage": "https://github.com/wintercounter/ccss#readme",
"devDependencies": {
"@lerna/link": "^3.18.5",
"@types/react": "^16.9.17",
"lerna": "^3.18.5"
}
}