forked from OpenCerts/open-certificate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@govtechsg/open-certificate",
"version": "2.0.62",
"description": "",
"main": "dist/open-certificate.js",
"module": "dist/open-certificate.esm.js",
"browser": "dist/open-certificate.umd.js",
"scripts": {
"build": "npm run clean && rollup -c",
"clean": "rm -rf dist/",
"test": "npm run build && nyc --reporter=html mocha --timeout 5000 -- ./test/helpers.js './schema/**/*.test.js' './src/**/*.test.js' './test/**/*.test.js'",
"test-watch": "mocha ./test/helpers.js './schema/**/*.test.js' './src/**/*.test.js' './test/**/*.test.js' --watch --watch-extensions js,json --recursive",
"lint": "eslint . --ext .js --max-warnings 0",
"lint:fix": "eslint . --ext .js --fix",
"publish:schema": "./scripts/publishSchema.sh"
},
"files": [
"/dist",
"schema"
],
"author": "Raymond Yeh <[email protected]> (http://geek.sg)",
"contributors": [
"RJ Chow <[email protected]> (https://about.rjchow.com)"
],
"license": "Apache-2.0",
"dependencies": {
"@govtechsg/open-attestation": "1.1.42",
"lodash": "^4.17.10"
},
"devDependencies": {
"@istanbuljs/nyc-config-babel": "^1.2.3",
"babel-core": "^6.26.3",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-mocha": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"lerna": "^3.13.4",
"microbundle": "^0.12.0",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"prettier": "^1.14.0",
"rollup": "^2.0.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenCerts/open-certificate.git"
},
"bugs": {
"url": "https://github.com/OpenCerts/open-certificate/issues"
},
"homepage": "https://github.com/OpenCerts/open-certificate#readme",
"publishConfig": {
"access": "public"
}
}