-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.39 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
{
"name": "interacto-nono",
"description": "ノノ -- A fluent API for triggering UI events in TypeScript",
"version": "0.5.0",
"author": "Arnaud Blouin",
"contributors": [
"Rémi Daniel"
],
"keywords": [
"event processing",
"user interaction",
"user interface",
"ui",
"front-end",
"framework",
"typescript"
],
"bugs": {
"url": "https://github.com/interacto/nono/issues"
},
"homepage": "https://github.com/interacto/nono",
"repository": "https://github.com/interacto/nono.git",
"license": "GPL-3.0",
"main": "./dist/nono.umd.js",
"module": "dist/nono.es5.js",
"types": "./dist/nono.d.ts",
"devDependencies": {
"@types/jest": "29.5.10",
"@types/node": "18.16.17",
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"barrelsby": "2.8.1",
"eslint": "8.54.0",
"eslint-plugin-jest": "27.6.0",
"eslint-plugin-tsdoc": "0.2.17",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-mock-extended": "3.0.5",
"rollup": "3.29.4",
"rollup-plugin-dts": "6.0.2",
"rollup-plugin-esbuild": "6.0.2",
"ts-jest": "29.1.1",
"typedoc": "0.25.4",
"typescript": "5.1.6"
},
"scripts": {
"package": "npm run pre-build && npm run build && npm run doc",
"build": "rollup -c",
"generate-barrels": "barrelsby -c ./barrelsby-config.json --delete",
"compile": "tsc",
"compile-test": "tsc -p tsconfig4tests.json",
"pre-build": "npm run clean && npm run generate-barrels && npm run lint && npm run compile && npm run compile-test && npm run coverage",
"clean": "(rm -rf dist out-test)",
"clean-all": "npm run clean && (rm -rf reports docs)",
"test": "jest",
"lint": "eslint src --ext .ts",
"lint-fix": "eslint src --ext .ts --fix",
"coverage": "jest --coverage --collectCoverageFrom=src*/**/*.ts --coverageDirectory reports",
"doc": "typedoc --out docs src/nono.ts",
"test-publish": "npm pack",
"gen-changelog": "git log --pretty=\"* %s\" $(git describe --tags --abbrev=0 @^)..@ | sort > commits"
},
"files": [
"dist/"
],
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "jsdom",
"coverageReporters": [
"lcov",
"cobertura",
"clover"
],
"testRegex": "(.*\\.)(test|spec)\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}