-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.27 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
{
"name": "smart-input-validator",
"version": "2.0.4",
"description": "Input validator for javascript based apps.",
"repository": {
"type": "git",
"url": "git@github.com:aprilmintacpineda/smart-input-validator.git"
},
"main": "lib/index.js",
"files": [
"lib/*",
"LICENSE",
"package.json",
"README.md",
"CODE_OF_CONDUCT.md"
],
"scripts": {
"test": "npm run eslint && npm run build && jest --env=node --coverage",
"build": "node build.js",
"start": "babel-node dev/index.js",
"eslint": "node node_modules/eslint/bin/eslint.js src/**/*.js",
"eslint-watch": "node node_modules/eslint-watch/bin/esw src/**/*.js --watch",
"reinstallNodeModules": "rm -rf node_modules package-lock.json && npm i"
},
"author": "April Mintac Pineda <aprilmintacpineda@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.5.0",
"eslint": "^5.10.0",
"eslint-watch": "^4.0.2",
"jest": "^23.6.0"
}
}