-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.13 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
{
"name": "@happyprime/observe-triggers",
"version": "0.0.2",
"description": "Intersection observer triggers based on class names.",
"author": "Happy Prime",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/happyprime/observe-triggers.git"
},
"files": [
"build"
],
"type": "module",
"main": "build/index.js",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@happyprime/eslint-config": "^0.0.12",
"@rollup/plugin-node-resolve": "^15.3.0",
"archiver": "^7.0.1",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-package-json-lint": "^8.0.0",
"npm-package-json-lint-config-default": "^7.0.1",
"rollup": "^4.24.3",
"terser": "^5.36.0"
},
"scripts": {
"build": "terser src/index.js -o build/index.js && npm run build:wordpress",
"build:wordpress": "npm run build:wordpress:script && node tools/build-wordpress-integration.js",
"build:wordpress:script": "rollup -c",
"lint": "eslint .",
"fix": "eslint . --fix",
"test": "jest",
"lint:package": "node ./node_modules/npm-package-json-lint/dist/cli.js ./"
}
}