forked from AFASSoftware/maquette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.75 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
{
"name": "maquette",
"version": "4.0.2",
"description": "Minimalistic Virtual DOM implementation with support for animated transitions.",
"homepage": "https://maquettejs.org/",
"keywords": [
"virtual",
"dom",
"animation",
"transitions"
],
"author": "Johan Gorter <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/AFASSoftware/maquette"
},
"module": "./dist/index.js",
"main": "./dist/maquette.cjs.js",
"browser": "./dist/maquette.umd.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"prepublishOnly": "tsa clean && npm run dist",
"assist": "tsa assist",
"release": "echo 'You can make a release by updating the version number in package.json and push the changes'",
"fix": "tsa fix",
"fixall": "tsa fixall",
"clean": "tsa clean",
"dist": "tsc -p ./src/tsconfig.json && tsc -p ./examples/tsconfig.json && rollup -c --bundleConfigAsCjs && uglifyjs ./dist/maquette.umd.js -c unsafe=true,unsafe_comps=true,unsafe_math=true,passes=3 -m -o ./dist/maquette.umd.min.js",
"start": "npm -s run dist && npx http-server . -p 8080 -o",
"test": "tsa ci",
"ci": "tsa ci && npm -s run dist && ts-node ./tools/check-file-size",
"publish-website": "cd website && npm install --no-optional --force && npm run deploy",
"test-also-with-browser": "npm run dist && cd examples/todomvc && npm install --no-save bower && bower install && cd ../../browser-tests && npm install && npm test"
},
"license": "MIT",
"tonicExampleFilename": "examples/tonic-example.js",
"nyc": {
"include": [
"src/**/*.ts",
"typings/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"html",
"text-summary"
],
"cache": true,
"temp-directory": "./build/nyc/cache",
"all": true,
"check-coverage": true,
"report-dir": "./build/coverage",
"es-module": false,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"watermarks": {
"lines": [
75,
100
],
"functions": [
75,
100
],
"branches": [
75,
100
],
"statements": [
75,
100
]
}
},
"devDependencies": {
"@types/chai-as-promised": "7.1.8",
"@types/node": "20.11.10",
"@types/sinon": "17.0.3",
"@types/sinon-chai": "3.2.12",
"@types/sinonjs__fake-timers": "8.1.5",
"chai-as-promised": "7.1.1",
"jsdom": "24.0.0",
"jsdom-global": "3.0.2",
"rollup": "4.9.6",
"sinon": "17.0.1",
"sinon-chai": "3.7.0",
"typescript-assistant": "0.66.9"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}