-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 759 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 759 Bytes
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
{
"name": "cldr-plural-rules",
"version": "1.0.0",
"description": "CLDR plural rules parser and evaluator.",
"repository": "github:arimah/plural-rules",
"author": "Alice Heurlin <alice.s.heurlin@gmail.com>",
"license": "MIT",
"files": [
"dist/"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"sideEffects": false,
"scripts": {
"build": "rollup -c rollup.config.mjs",
"test": "mocha --ignore test/helpers.js",
"prepublishOnly": "npm run build && npm test"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.1",
"mocha": "^10.2.0",
"rollup": "^3.25.2",
"tslib": "^2.5.3",
"typescript": "^5.1.3"
}
}