-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.96 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
{
"name": "text-mask-rut",
"version": "0.0.3",
"description": "A Text Mask addon to format the Chilean National Identifier Number (RUT)",
"main": "dist/legacy/index.js",
"module": "lib/index.js",
"repository": "https://github.com/LuisUrrutia/text-mask-rut.git",
"author": "Luis Urrutia",
"license": "MIT",
"keywords": [
"text-mask",
"rut"
],
"devEngines": {
"node": "8.x || 9.x"
},
"scripts": {
"lint": "eslint ./lib --ext .js",
"clean": "rimraf dist && mkdirp dist/legacy && mkdirp dist/legacy-umd",
"build": "npm run clean && rollup --config",
"test": "jest --coverage",
"test:watch": "jest --watchAll",
"test:clean": "rimraf ./coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"codeclimate": "codeclimate-test-reporter < ./coverage/lcov.info"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-plugin-transform-remove-console": "^6.9.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"codeclimate-test-reporter": "^0.5.0",
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.0",
"jest": "^22.4.3",
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.6.2",
"rollup": "^0.58.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^3.0.0"
},
"jest": {
"collectCoverageFrom": [
"lib/**/*.{js}"
],
"coverageThreshold": {
"global": {
"statements": 98,
"branches": 91,
"functions": 98,
"lines": 98
}
},
"moduleDirectories": [
"node_modules"
],
"testRegex": "tests/.*\\.test\\.js$"
}
}