This repository was archived by the owner on Jan 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.29 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
{
"name": "maquette-css-transitions",
"version": "1.1.1",
"description": "CSS transitions for maquette",
"module": "./dist/index.js",
"main": "./dist/maquette-css-transitions.cjs.js",
"browser": "./dist/maquette-css-transitions.umd.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"prepublishOnly": "tsa clean && npm -s run dist",
"assist": "tsa assist",
"release": "tsa release",
"fix": "tsa fix",
"fixall": "tsa fixall",
"clean": "tsa clean",
"dist": "tsc -p ./src/tsconfig.json && rollup -c && uglifyjs ./dist/maquette-css-transitions.umd.js -c unsafe=true -m -o ./dist/maquette-css-transitions.umd.min.js",
"ci": "tsa ci",
"test": "tsa ci",
"coverage-show": "opn build/coverage/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AFASSoftware/maquette-css-transitions.git"
},
"keywords": [
"maquette",
"css",
"transitions",
"animated"
],
"author": "AFAS Software",
"license": "MIT",
"bugs": {
"url": "https://github.com/AFASSoftware/maquette-css-transitions/issues"
},
"homepage": "https://github.com/AFASSoftware/maquette-css-transitions#readme",
"devDependencies": {
"@types/node": "17.0.23",
"@types/sinon": "10.0.11",
"@types/sinon-chai": "3.2.8",
"@types/sinonjs__fake-timers": "8.1.2",
"mocha": "9.2.2",
"rollup": "2.70.1",
"sinon": "13.0.1",
"sinon-chai": "3.7.0",
"typescript-assistant": "^0.56.6",
"uglify-js": "3.15.3"
},
"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
]
}
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}