forked from usablica/intro.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "intro.js",
"version": "7.0.1",
"description": "User Onboarding and Product Walkthrough Library",
"keywords": [
"onboarding",
"tour",
"introjs",
"intro",
"guide",
"walkthrough",
"user-onboarding"
],
"author": "Afshin Mehrabani <[email protected]>",
"homepage": "https://introjs.com",
"repository": {
"type": "git",
"url": "https://github.com/usablica/intro.js"
},
"main": "intro.js",
"module": "intro.module.js",
"types": "src/index.d.ts",
"scripts": {
"prettier": "prettier --write '(src|tests)/**/*.(js|ts|json|html)' '!tests/cypress/setup/dist'",
"test": "run-p test:prettier test:jest test:jshint test:cypress",
"test:prettier": "prettier --check '(src|tests)/**/*.(js|ts|json|html)' '!tests/cypress/setup/dist'",
"test:watch": "jest --watch",
"test:jest": "jest --coverage --silent --ci --coverage --coverageReporters=\"text\" --coverageReporters=\"text-summary\"",
"test:jshint": "jshint ./src --verbose && jshint ./tests --verbose",
"test:cypress": "npm run build && cp -r ./dist ./tests/cypress/setup && cd ./tests && cypress run --env type=actual",
"release": "./bin/release.sh || true",
"prebuild": "rimraf ./dist",
"build": "rollup -c",
"build:watch": "rollup -c -w"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.4.2",
"@types/node": "^18.15.9",
"autoprefixer": "^9.0.0",
"babel-jest": "^29.2.2",
"core-js": "^3.6.5",
"cypress": "^12.8.1",
"cypress-real-events": "^1.7.6",
"cypress-visual-regression": "^2.1.1",
"eslint": "^8.0.1",
"jest": "^29.5.0",
"jest-extended": "^3.2.4",
"jsdom": "^21.1.1",
"jshint": "^2.12.0",
"lerna-changelog": "^2.1.0",
"minify": "^9.1.0",
"node-sass": "^8.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-clean": "^1.2.0",
"postcss-normalize": "^8.0.1",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.48.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"engine": [
"node >=0.1.90"
],
"files": [
"*.js",
"*.css",
"*.map",
"*.d.ts",
"themes/*",
"minified/*"
],
"license": "AGPL-3.0",
"changelog": {
"labels": {
"new feature": ":rocket: New Feature",
"breaking": ":boom: Breaking Change",
"bug": ":bug: Bug Fix",
"polish": ":nail_care: Polish",
"documentation": ":memo: Documentation",
"internal": ":house: Internal",
"performance": ":running_woman: Performance"
},
"cacheDir": ".changelog"
}
}