-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "uk-time",
"version": "1.1.3",
"description": "Convert UTC time to UK time and vice versa",
"main": "dist/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"pretest": "npm run build",
"test": "mocha",
"posttest": "npm run lint",
"clean": "rm -fR ./dist ./es",
"lint": "eslint .",
"build": "npm run build:commonjs && npm run build:es",
"build:commonjs": "NODE_ENV=commonjs babel -d dist/ index.js",
"build:es": "babel -d es/ index.js",
"prepare": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/sbason/uk-time.git"
},
"bugs": {
"url": "https://github.com/sbason/uk-time/issues"
},
"homepage": "https://github.com/sbason/uk-time",
"author": "sbason",
"license": "ISC",
"devDependencies": {
"assert": "^1.4.1",
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-block-scoping": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"eslint": "^4.9.0",
"eslint-config-iplayer-es6": "^3.1.0",
"eslint-plugin-mocha": "^4.11.0",
"mocha": "^4.0.1"
},
"eslintConfig": {
"extends": "iplayer-es6",
"parserOptions": {
"sourceType": "module"
}
},
"dependencies": {
"dateformat": "^3.0.2"
}
}