-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.22 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.22 KB
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
{
"name": "@opentech-ux/session-model",
"version": "0.4.1",
"description": "Model to represent an UX session with a graph of all traversed LOMs and timed events.",
"homepage": "https://github.com/opentech-ux/session-model#readme",
"license": "Apache-2.0",
"author": "Pierre-Louis JAEGER <pjr@devalgo.com>",
"maintainers": [
"Pierre-Louis JAEGER <pjr@devalgo.com>"
],
"keywords": [
"LOM",
"wireframe",
"UX"
],
"repository": {
"type": "git",
"url": "git+https://github.com/opentech-ux/session-model.git"
},
"bugs": {
"url": "https://github.com/opentech-ux/session-model/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "^7.26.1",
"nyc": "^15.1.0",
"prettier": "2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"typescript-json-schema": "0.53.0"
},
"files": [
"dist/lib/**/*",
"dist/schema/**/*"
],
"main": "dist/lib/session-model.js",
"types": "dist/lib/session-model.d.ts",
"scripts": {
"build": "npm run build:clean && npm run build:ts && npm run build:schema",
"build:clean": "rimraf ./dist",
"build:ts": "tsc -p .",
"build:schema": "typescript-json-schema tsconfig.json Session --id https://opentech-ux.org/schema/session.schema.json --out dist/schema/session.schema.json",
"deps:refresh": "rimraf ./node_modules ./package-lock.json && npm install",
"eslint:format": "eslint --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore . --fix",
"pkg:create": "npm run build && npm run test",
"prettier:format": "prettier \"./**/*.{js,jsx,ts,tsx}\" --ignore-path .gitignore -l --write",
"test": "npm run test:prettier && npm run test:eslint",
"test:eslint": "eslint --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore . --color",
"test:prettier": "prettier \"./**/*.{js,jsx,ts,tsx}\" --ignore-path .gitignore -l"
}
}