forked from nashdot/accounting-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.51 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
{
"name": "accounting-js",
"version": "1.0.1",
"description": "Number, money and currency formatting library.",
"main": "dist/accounting.umd.js",
"jsnext:main": "dist/accounting.es6.js",
"scripts": {
"prebuild": "eslint lib",
"build": "rollup -c rollup.config.umd.js && rollup -c rollup.config.es6.js",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "ava",
"precoverage": "rimraf coverage",
"coverage": "nyc --reporter=lcov --reporter=text npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nashdot/accounting-js.git"
},
"keywords": [
"es6",
"modules",
"rollup",
"bundle",
"accounting",
"number",
"money",
"currency",
"format",
"utilities",
"finance",
"exchange"
],
"author": "Stanislav Lesnikov",
"license": "MIT",
"bugs": {
"url": "https://github.com/nashdot/accounting-js/issues"
},
"files": [
"lib",
"dist"
],
"homepage": "https://github.com/nashdot/accounting-js#readme",
"devDependencies": {
"ava": "^0.12.0",
"babel-eslint": "^5.0.0",
"babel-preset-es2015-rollup": "^1.1.0",
"eslint": "^2.2.0",
"eslint-config-nashdot": "^1.0.6",
"nyc": "^5.6.0",
"rimraf": "^2.5.2",
"rollup": "^0.25.0",
"rollup-plugin-babel": "^2.3.9",
"source-map-support": "^0.4.0"
},
"ava": {
"files": [
"tests/*.js"
],
"failFast": true,
"tap": true
},
"nyc": {
"exclude": [
"rollup*.js",
"tests"
]
}
}