-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.16 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
{
"name": "msisdn-formatter",
"version": "1.1.0",
"description": "Russian msisdn normalizer and formatter",
"author": "Dalee IA <[email protected]>",
"license": "MIT",
"main": "./dist/msisdn.js",
"scripts": {
"test": "make test",
"build": "make build",
"prepublish": "npm run build"
},
"engines": {
"node": ">= 6.9.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Dalee/msisdn-formatter"
},
"keywords": [
"msisdn"
],
"files": [
"dist",
"index.d.ts"
],
"bugs": {
"url": "https://github.com/Dalee/msisdn-formatter/issues"
},
"contributors": [
{
"name": "Nikita Safonov",
"email": "[email protected]"
}
],
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-istanbul": "^0.12.1",
"babel-plugin-transform-es2015-modules-umd": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"eslint": "^3.15.0",
"eslint-config-dalee": "^0.1.6",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^2.0.1",
"mocha": "^3.2.0",
"npm-check-updates": "^2.10.2",
"should": "^11.2.0"
}
}