mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
64 lines
1.9 KiB
JSON
64 lines
1.9 KiB
JSON
{
|
|
"name": "spacetime",
|
|
"version": "6.16.3",
|
|
"description": "figure-out dates across timezones",
|
|
"main": "builds/spacetime.js",
|
|
"unpkg": "builds/spacetime.min.js",
|
|
"module": "builds/spacetime.mjs",
|
|
"types": "types/index.d.ts",
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "npm run version && rollup -c --silent",
|
|
"build:tz": "node ./scripts/updateZonefile.js",
|
|
"pack": "node ./zonefile/pack.js",
|
|
"version": "node ./scripts/version.js",
|
|
"watch": "amble ./scratch.js",
|
|
"test": "TESTENV=dev tape ./test/**/*.test.js | tap-dancer --color always",
|
|
"testb": "TESTENV=prod tape ./test/**/*.test.js | tap-dancer --color always",
|
|
"test:types": "ts-node ./test/types/index.ts | tap-dancer --color always",
|
|
"coverage": "nyc -r lcov -n 'src/**/*' -n 'plugins/**/*' npm run coverage:tests",
|
|
"coverage:tests": "npm run test",
|
|
"codecov": "npm run coverage && codecov -t 411de6c7-82d2-41e9-a1cc-9096cdab6c72",
|
|
"lint": "eslint ./src --ext .js"
|
|
},
|
|
"browserslist": [
|
|
"defaults",
|
|
"not IE 11",
|
|
"maintained node versions"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/spencermountain/spacetime.git"
|
|
},
|
|
"files": [
|
|
"builds",
|
|
"api",
|
|
"types"
|
|
],
|
|
"prettier": {
|
|
"trailingComma": "none",
|
|
"tabWidth": 2,
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"printWidth": 100
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "7.15.0",
|
|
"@babel/preset-env": "7.15.0",
|
|
"codecov": "3.8.3",
|
|
"nyc": "^15.1.0",
|
|
"rollup": "2.56.0",
|
|
"rollup-plugin-babel": "4.4.0",
|
|
"rollup-plugin-commonjs": "10.1.0",
|
|
"rollup-plugin-filesize-check": "0.0.1",
|
|
"rollup-plugin-json": "^4.0.0",
|
|
"rollup-plugin-node-resolve": "5.2.0",
|
|
"rollup-plugin-terser": "7.0.2",
|
|
"shelljs": "0.8.4",
|
|
"tap-dancer": "0.3.4",
|
|
"tape": "5.3.0",
|
|
"timekeeper": "2.2.0"
|
|
},
|
|
"license": "Apache-2.0"
|
|
}
|