-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
37 lines (37 loc) · 951 Bytes
/
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
{
"name": "make-plural-monorepo",
"private": true,
"description": "Monorepo for make-plural packages",
"author": "Eemeli Aro <[email protected]>",
"license": "ISC",
"workspaces": [
"packages/compiler",
"packages/cli",
"packages/plurals"
],
"repository": {
"type": "git",
"url": "https://github.com/eemeli/make-plural.git"
},
"scripts": {
"build": "gulp",
"clean": "git clean -fdx packages/",
"prettier": "prettier --write .",
"preversion": "npm run clean && npm run build && npm test",
"test": "nyc mocha"
},
"devDependencies": {
"@babel/core": "^7.12.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.12.0",
"chai": "^5.1.0",
"cldr-core": "^45.0.0",
"gulp": "^5.0.0",
"gulp-babel": "^8.0.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"safe-identifier": "^0.4.2",
"yargs": "^17.6.2"
}
}