-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.71 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
68
69
70
71
72
73
74
75
76
77
{
"name": "fabricjs-tagging-ci",
"version": "1.3.0-beta.0",
"description": "Repo for testing tagging, releasing etc. via CI",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/fabricjs/tagging-ci.git"
},
"author": "ShaMan123",
"license": "ISC",
"bugs": {
"url": "https://github.com/fabricjs/tagging-ci/issues"
},
"homepage": "https://github.com/fabricjs/tagging-ci#readme",
"scripts": {
"cli": "node ./scripts/index.mjs",
"changelog": "auto-changelog -o change-output.md --unreleased-only",
"build": "echo build",
"build:fast": "npm run build -- -f",
"dev": "npm run cli -- dev",
"start": "npm run cli -- start",
"export": "npm run cli -- website export",
"build-tests": "rollup -c ./rollup.test.config.js",
"test:unit-browser": "npm run test -- -s unit -p 8080 -l -c ",
"test:visual-browser": "npm run test -- -s visual -p 8080 -l -c ",
"test": "npm run cli -- test",
"test:coverage": "nyc --silent qunit test/node_test_setup.js test/lib test/unit",
"test:visual:coverage": "nyc --silent --no-clean qunit test/node_test_setup.js test/lib test/visual",
"coverage:report": "nyc report --reporter=lcov --reporter=text",
"lint": "eslint --config .eslintrc.js src/**/*.ts",
"lint_tests": "eslint test/unit --config .eslintrc_tests && eslint test/visual --config .eslintrc_tests",
"all": "npm run build && npm run test -- --all && npm run lint && npm run lint_tests && npm run export",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write ."
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.180",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"abort-controller": "^3.0.0",
"auto-changelog": "^2.3.0",
"busboy": "^1.6.0",
"chalk": "^2.4.1",
"commander": "^9.1.0",
"deep-object-diff": "^1.1.7",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"fireworm": "^0.7.2",
"fs-extra": "^10.0.1",
"fuzzy": "^0.1.3",
"inquirer": "^8.2.1",
"inquirer-checkbox-plus-prompt": "^1.0.1",
"kill-port": "^2.0.1",
"moment": "^2.29.1",
"nyc": "^15.1.0",
"pixelmatch": "^4.0.2",
"prettier": "2.7.1",
"ps-list": "^8.1.0",
"qunit": "^2.17.2",
"rollup": "^2.75.6",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.0.2",
"semver": "^7.3.8",
"source-map-support": "^0.5.21",
"testem": "^3.8.0",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14.0.0"
}
}