-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 921 Bytes
/
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
{
"name": "num2word",
"version": "0.0.1",
"main": "index.js",
"repository": "https://github.com/siawo/Converter.git",
"author": "Md Owais",
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/eslint src/js/*.js && ./node_modules/.bin/jest --coverage",
"build": "./node_modules/.bin/webpack --config ./scripts/webpack.config.js && ./node_modules/.bin/jsdoc src/js/*.js --destination doc/"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"eslint": "^4.4.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^20.0.4",
"jsdoc": "^3.5.4",
"webpack": "^3.5.2"
},
"dependencies": {}
}