forked from catamphetamine/javascript-time-ago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.54 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
{
"name": "javascript-time-ago",
"version": "1.0.31",
"description": "International highly customizable relative date/time formatting",
"main": "index.commonjs.js",
"module": "index.js",
"sideEffects": false,
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-loader": "^7.1.4",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^3.5.0",
"cldr-data": "^32.0.0",
"cldr-dates-full": "^32.0.0",
"cross-env": "^5.1.4",
"fs-extra": "^5.0.0",
"intl": "^1.2.4",
"intl-locales-supported": "^1.0.0",
"make-plural": "^4.1.1",
"mocha": "^5.0.5",
"npm-run-all": "^1.4.0",
"nyc": "^11.6.0",
"prop-types": "^15.6.0",
"rimraf": "^2.5.0",
"uglify-js": "^3.3.5",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13"
},
"scripts": {
"test": "mocha --bail --require babel-core/register --require ./test/setup.js \"source/**/*.test.js\" \"test/**/*.test.js\"",
"test-coverage": "cross-env NODE_ENV=test nyc mocha --bail --require ./test/setup.js \"source/**/*.test.js\" \"test/**/*.test.js\"",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"browser-build": "webpack --mode production --progress --colors",
"browser-build-dev": "webpack --mode development --progress --colors --watch",
"clean-for-build": "rimraf ./commonjs/**/* ./modules/**/*",
"build-commonjs-modules": "cross-env BABEL_ENV=commonjs babel ./source --out-dir ./commonjs --source-maps --ignore *.test.js",
"build-es6-modules": "cross-env BABEL_ENV=es6 babel ./source --out-dir ./modules --source-maps --ignore *.test.js",
"build": "npm-run-all clean-for-build build-commonjs-modules build-es6-modules browser-build",
"prepublish": "npm-run-all build test",
"generate-locales": "babel-node bin/generate-locales",
"generate-quantifiers": "babel-node bin/generate-quantifiers",
"generate-load-all-locales": "babel-node bin/generate-load-all-locales"
},
"repository": {
"type": "git",
"url": "git+https://github.com/catamphetamine/javascript-time-ago.git"
},
"keywords": [
"react",
"time",
"ago",
"relative",
"format"
],
"author": "catamphetamine <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/catamphetamine/javascript-time-ago/issues"
},
"homepage": "https://github.com/catamphetamine/javascript-time-ago#readme"
}