-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.47 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
{
"name": "time-number",
"version": "1.1.0",
"keywords": [
"time",
"timeFromInt",
"timeToInt"
],
"description": "Converts time representation from string to number or from number to string",
"main": "dist/time-number.js",
"homepage": "https://github.com/yury-dymov/time-number.git",
"author": {
"name": "Yuri Dymov",
"email": "yuri@dymov.me"
},
"repository": {
"type": "git",
"url": "https://github.com/yury-dymov/time-number.git"
},
"scripts": {
"build": "npm run clean && npm run build:lib && npm run build:umd",
"build:lib": "BABEL_ENV=production ./node_modules/.bin/babel src -d lib",
"build:umd": "node_modules/.bin/webpack --config webpack.config.prod.js",
"lint": "./node_modules/.bin/eslint src",
"clean": "./node_modules/.bin/rimraf dist && rimraf lib && rimraf coverage",
"test": "./node_modules/.bin/jest"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.9.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.1",
"jest": "^15.1.1",
"rimraf": "^2.5.2",
"webpack": "^1.13.1"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}