forked from Dan503/time-input-polyfill-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.16 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": "@time-input-polyfill/utils",
"version": "1.0.4",
"description": "A library of helper functions designed to make the building of time input polyfill components easier.",
"main": "npm/index.js",
"jsdelivr": "npm/time-input-polyfill-utils.min.js",
"type": "module",
"scripts": {
"start": "cypress open",
"test": "cypress run",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:entryLog": "cypress run --spec \"cypress/integration/ManualEntryLog.test.ts\"",
"cy:converters": "cypress run --spec \"cypress/integration/converters.test.ts\"",
"cy:getters": "cypress run --spec \"cypress/integration/getters.test.ts\"",
"cy:modifiers": "cypress run --spec \"cypress/integration/modifiers.test.ts\"",
"cy:is": "cypress run --spec \"cypress/integration/is.test.ts\"",
"prepublishOnly": "npx rollup -c && npx tsc --project tsconfig.prepublish.json",
"postpublish": "rm -rf npm",
"testpublish": "npm run prepublish && npm run postpublish",
"pub": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dan503/time-input-polyfill-utils.git"
},
"keywords": [
"time",
"input",
"polyfill",
"helpers",
"utility",
"util",
"library"
],
"author": "Daniel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dan503/time-input-polyfill-utils/issues"
},
"homepage": "https://github.com/Dan503/time-input-polyfill-utils#readme",
"dependencies": {},
"devDependencies": {
"@cypress/webpack-preprocessor": "^4.1.1",
"@rollup/plugin-typescript": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"cypress": "^4.1.0",
"cypress-promise": "^1.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^2.3.2",
"prettier-plugin-organize-imports": "^2.3.3",
"rollup": "^2.3.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.8.2",
"typescript": "^3.8.3",
"webpack": "^4.41.2"
}
}