forked from js-joda/js-joda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.85 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
67
{
"name": "js-joda",
"version": "1.1.13",
"description": "a date and time library for javascript",
"repository": {
"type": "git",
"url": "https://github.com/js-joda/js-joda.git"
},
"main": "dist/js-joda.js",
"typings": "dist/js-joda.d.ts",
"scripts": {
"prepublish": "npm run build-dist",
"test": "./node_modules/.bin/mocha --timeout 5000 --compilers js:babel-core/register ./test/*Test.js ./test/**/*Test.js ./test/**/**/*Test.js ./test/plugTest_mochaOnly.js",
"test-coverage": "NODE_ENV=test COVERAGE=1 ./node_modules/.bin/nyc --report-dir=build/coverage --reporter=lcov --reporter html ./node_modules/.bin/mocha --timeout 5000 --compilers js:babel-core/register --reporter progress ./test/*Test.js ./test/**/*Test.js ./test/**/**/*Test.js",
"test-browser": "./node_modules/.bin/karma start --reporters=dots --single-run",
"test-saucelabs": "./node_modules/.bin/karma start --reporters=\"dots,saucelabs\" --browsers=\"sl_chrome,sl_ie_9,sl_firefox\" --single-run=true",
"test-ci": "npm run build-dist && npm run test && npm run test-browser -- --browsers \"Firefox,PhantomJS\" && npm run test-ts-definitions && npm run build-esdoc && npm run test-coverage",
"test-ts-definitions": "tsc --noImplicitAny --noEmit --pretty test/typescript_defintions/js-joda-tests.ts",
"build-esdoc": "./node_modules/.bin/esdoc -c esdoc.json",
"build-dist-es5": "./node_modules/.bin/babel src -d build/es5",
"build-dist": "./node_modules/.bin/webpack --progress --colors --bail && DIST_MIN=1 ./node_modules/.bin/webpack --progress --colors --bail",
"build-md-toc": "./node_modules/.bin/markdown-toc -i CheatSheet.md",
"build-gz-check": "gzip -kf dist/js-joda.min.js && ls -alh ./dist/js-joda.min.js*",
"lint": "./node_modules/.bin/eslint ."
},
"keywords": [
"date",
"time",
"timezone"
],
"nyc": {
"sourceMap": false,
"instrument": false
},
"author": "pithu",
"homepage": "https://js-joda.github.com/js-joda",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-plugin-istanbul": "^2.0.3",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"esdoc": "^0.4.8",
"eslint": "^3.9.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"karma": "^1.3.0",
"karma-chai-plugins": "^0.8.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sauce-launcher": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"markdown-toc": "^0.13.0",
"mocha": "^3.1.2",
"nyc": "^8.3.2",
"phantomjs-prebuilt": "^2.1.13",
"typescript": "^2.0.6",
"webpack": "^1.13.3"
},
"license": "BSD-3-Clause"
}