-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.26 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.26 KB
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
{
"name": "dh-postcode",
"version": "1.1.2",
"description": "simple uk postcode validation and formatting",
"main": "dist/postcode.js",
"module": "dist/postcode.es.js",
"umd:main": "dist/postcode.umd.js",
"files": [
"dist"
],
"scripts": {
"pretest": "standard",
"test": "jest",
"lint": "standard --format",
"changelog": "standard-version",
"build": "rollup -c",
"dev": "rollup -c -w",
"prepublish": "npm run build"
},
"keywords": [
"postcode",
"validation",
"formatting"
],
"devDependencies": {
"babel-preset-env": "1.4.0",
"jest": "20.0.1",
"rollup": "0.41.6",
"rollup-plugin-babel": "2.7.1",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-uglify": "1.0.2",
"rollup-watch": "3.2.2",
"standard": "10.0.2",
"standard-version": "4.0.0",
"uglify-js-harmony": "2.7.7"
},
"author": "Dan Hayden <dhayden09@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/danhayden/dh-postcode.git"
},
"bugs": {
"url": "https://github.com/danhayden/dh-postcode/issues"
},
"homepage": "https://github.com/danhayden/dh-postcode#readme",
"standard": {
"parser": "babel-eslint",
"ignore": [
"dist/**"
]
}
}