-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
58 lines (58 loc) · 1.83 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
{
"name": "revoice",
"version": "0.1.13",
"description": "Generate HTML / PDF receipts and invoices",
"main": "dist/index.js",
"homepage": "https://github.com/brewhk/revoice",
"repository": "brewhk/revoice",
"bugs": {
"url": "https://github.com/brewhk/revoice/issues",
"email": "[email protected]"
},
"scripts": {
"start": "yarn test -- --watch & yarn watch",
"build": "./node_modules/.bin/rimraf './dist' && ./node_modules/.bin/babel src --out-dir dist && cp -R ./src/schema/ ./dist",
"watch": "yarn run build -- --watch",
"test": "./node_modules/mocha/bin/mocha --require babel-register",
"coverage": "cross-env NODE_ENV=test nyc yarn test",
"report-coverage": "cross-env NODE_ENV=test nyc report --reporter=lcov && cp ./coverage/lcov.info coverage.lcov",
"prepare": "yarn licenses generate-disclaimer > DISCLAIMER && yarn run build"
},
"keywords": [
"receipt",
"invoice",
"payment",
"ecommerce"
],
"author": "Daniel Li <[email protected]> (http://danyll.com/)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^5.2.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.0",
"babel-register": "^6.24.0",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"chai-fs": "^1.0.0",
"cross-env": "^5.0.5",
"istanbul": "^0.4.5",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"randomstring": "^1.1.5",
"rimraf": "^2.6.1"
},
"dependencies": {
"ajv": "^5.2.2",
"app-root-path": "^2.0.1",
"crypto-js": "^3.1.9-1",
"currency-formatter": "^1.2.1",
"handlebars": "^4.0.10",
"he": "^1.1.1",
"mkdirp": "^0.5.1",
"phantom": "^2.1.21"
}
}