-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.43 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
{
"name": "afterframe",
"amdName": "afterFrame",
"version": "1.0.2",
"description": "A simple method to invoke a function after the browser has rendered & painted a frame",
"main": "dist/afterframe.js",
"module": "dist/afterframe.module.js",
"unpkg": "dist/afterframe.umd.js",
"umd:main": "dist/afterframe.umd.js",
"source": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "tsc -p ./test/tsconfig.json && jest --ci --coverage",
"build": "microbundle build",
"prepare": "npm run build",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewiggins/afterframe.git"
},
"authors": [
"Andre Wiggins <https://github.com/andrewiggins>"
],
"license": "MIT",
"files": [
"src",
"dist"
],
"bugs": {
"url": "https://github.com/andrewiggins/afterframe/issues"
},
"homepage": "https://github.com/andrewiggins/afterframe#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^14.0.26",
"jest": "^27.0.6",
"jest-junit": "^12.2.0",
"microbundle": "^0.13.3",
"typescript": "^4.3.5"
},
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.jsx?$",
"coverageReporters": [
"json",
"lcov",
"text",
"cobertura"
],
"reporters": [
"default",
"jest-junit"
]
},
"jest-junit": {
"outputDirectory": "./test-results/"
}
}