-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.44 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.44 KB
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
{
"name": "attractivejs",
"version": "0.12.0",
"description": "A light-weight library for declarative DOM actions using data attributes",
"scripts": {
"build": "rollup -c",
"dev": "npm-run-all --parallel dev:*",
"dev:watch": "rollup -c -w",
"dev:serve": "npx http-server . -p 8080 -o /test",
"test": "vitest run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"ci": "npm run lint && npm run format:check && npm run test:run",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run build"
},
"author": "Rails Designer",
"homepage": "https://attractivejs.railsdesigner.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/rails-designer/attractivejs.git"
},
"bugs": {
"url": "https://github.com/rails-designer/attractivejs/issues"
},
"module": "dist/attractive.js",
"main": "dist/attractive.js",
"files": [
"dist"
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"http-server": "^14.1.1",
"jsdom": "^27.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"rollup": "^2.79.2",
"rollup-plugin-terser": "^7.0.2",
"vitest": "^3.2.4"
}
}