-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "typographic-numbers",
"version": "2.0.3",
"description": "Micro module for formatting numbers",
"main": "index.es5.js",
"jsnext:main": "index.js",
"files": [
"index.js",
"index.es5.js"
],
"scripts": {
"test": "eslint . && ava --require babel-register",
"prepublish": "babel index.js --out-file index.es5.js",
"postpublish": "rimraf index.es5.js && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrepolischuk/typographic-numbers.git"
},
"keywords": [
"typographic",
"formatting",
"numbers",
"textr"
],
"author": "Andrey Polischuk <me@andrepolischuk.com> (https://andrepolischuk.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrepolischuk/typographic-numbers/issues"
},
"homepage": "https://github.com/andrepolischuk/typographic-numbers",
"dependencies": {
"typographic-numbers-l10n-db": "^0.1.0"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"eslint": "^2.13.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.9.2",
"rimraf": "^2.5.2"
}
}