forked from nashdot/accounting-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 1.92 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "accounting-js",
"version": "1.1.1",
"description": "Number, money and currency formatting library.",
"main": "dist/accounting.umd.js",
"jsnext:main": "lib/index.js",
"scripts": {
"predoc": "rimraf docs",
"doc": "esdoc -c esdoc.json",
"prebuild": "eslint lib",
"build": "rollup -c rollup.config.umd.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": "https://github.com/nashdot/accounting-js"
},
"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": [
"index.js",
"README.md",
"CHANGELOG.md",
"lib",
"dist"
],
"homepage": "https://github.com/nashdot/accounting-js#readme",
"devDependencies": {
"ava": "^0.20.0",
"babel-eslint": "^7.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"esdoc": "^0.5.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.1",
"nyc": "^11.0.3",
"rimraf": "^2.5.2",
"rollup": "^0.43.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"source-map-support": "^0.4.15"
},
"dependencies": {
"is-string": "^1.0.4",
"object-assign": "^4.0.1"
},
"ava": {
"files": [
"tests/*.js"
],
"failFast": true,
"tap": true
},
"nyc": {
"exclude": [
"rollup*.js",
"tests"
]
}
}