-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.59 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
{
"name": "looper.js",
"version": "3.1.0",
"description": "Helps find memory leaks",
"main": "pkg/dist-web/index.js",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.12.17",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-bundle-web": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"pika-plugin-package.json": "^1.0.2",
"prettier": "^2.2.1",
"serve": "^11.1.0"
},
"scripts": {
"test": "jest",
"prettier": "prettier --single-quote --write \"{src,__{tests,mocks}__}/**/*.js\" \"./*.js\"",
"serve": "serve",
"build": "pika build",
"publish": "pika publish",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deleteme/looper.js.git"
},
"author": "Matt Garrett",
"license": "ISC",
"bugs": {
"url": "https://github.com/deleteme/looper.js/issues"
},
"homepage": "https://github.com/deleteme/looper.js#readme",
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-build-web"
],
[
"pika-plugin-package.json",
{
"+main": "dist-web/index.js"
}
]
]
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"last 2 Safari versions"
],
"jest": {
"modulePathIgnorePatterns": [
"pkg"
]
},
"resolutions": {
"jest/**/sshpk": ">=1.13.2 || >=1.14.1",
"**/**/lodash": ">=4.17.12"
}
}