-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "polish-plurals",
"version": "1.1.0",
"description": "Package for generating correct plurals in Polish.",
"main": "index",
"scripts": {
"test": "npm run build && mocha --require babel-core/register",
"test:coverage": "npm run build && nyc npm test",
"test:coveralls": "npm run build && nyc --reporter=text-lcov npm test | coveralls",
"build": "babel *.mjs --out-dir .",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmiszy/polish-plurals.git"
},
"keywords": [
"polish",
"plurals",
"grammar"
],
"author": "Michał Miszczyszyn",
"license": "ISC",
"bugs": {
"url": "https://github.com/mmiszy/polish-plurals/issues"
},
"homepage": "https://github.com/mmiszy/polish-plurals#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-dynamic-import-node": "1.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"chai": "4.1.2",
"coveralls": "3.0.0",
"mocha": "5.0.0",
"nyc": "11.4.1"
},
"types": "index.d.ts"
}