-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "spytext",
"version": "0.10.0",
"description": "Why? Because there is nothing like it.",
"type": "module",
"exports": {
".": "src/spytext.js",
"./styles/": "styles/*"
},
"unpkg": "dist/spytext.min.js",
"scripts": {
"build": "rollup -c",
"clean": "rimraf dist",
"lint": "eslint --ext .cjs,.js,.mjs .",
"format": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run clean && npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/lohfu/spytext"
},
"author": "Linus Miller <lohfu@lohfu.io> (https://lohfu.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lohfu/spytext/issues"
},
"homepage": "https://github.com/lohfu/spytext",
"dependencies": {
"domp": "^0.8.0",
"lowline": "^0.4.2",
"selektr": "^0.3.1",
"snapback": "^0.9.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"rimraf": "^5.0.5",
"rollup": "^4.5.0"
}
}