-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 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
{
"name": "easyrsa",
"version": "3.2.3",
"description": "EasyRSA public key infrastructure management",
"main": "lib/index.js",
"bin": {
"easyrsa": "lib/bin/easyrsa.js"
},
"scripts": {
"start": "npm run test:watch",
"test": "NODE_ENV=test jest --runInBand",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"lint": "NODE_ENV=test eslint src/",
"compile": "rimraf lib/*; NODE_ENV=production babel src/ -d lib/ -s",
"compile:watch": "npm run compile -- -w",
"prepublish": "npm run compile"
},
"engines": {
"node": ">=6"
},
"author": "Olivier Louvignes <olivier@mgcrea.io>",
"repository": "github:mgcrea/node-easyrsa",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.1",
"chalk": "^2.3.0",
"core-error-predicates": "^1.1.0",
"del": "^3.0.0",
"inquirer": "^5.1.0",
"lodash": "^4.17.5",
"mkdirp": "^0.5.1",
"moment": "^2.20.1",
"node-forge": "^0.7.1",
"source-map-support": "^0.5.3",
"tildify": "^1.2.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"codacy-coverage": "^2.0.3",
"debug-utils": "^0.3.0",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"expect": "^22.2.0",
"jest": "^22.2.1",
"rimraf": "^2.6.2"
},
"optionalDependencies": {
"ursa": "^0.9.4"
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/test/setup/index.js"
]
}
}