-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "single-spa-alpinejs",
"version": "1.0.3",
"description": "Single-spa helpers for alpinejs",
"main": "lib/umd/single-spa-alpinejs.js",
"scripts": {
"format": "prettier --write \"./**/*\"",
"build": "rollup -c",
"test": "cross-env BABEL_ENV=test jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src",
"prepublishOnly": "yarn build"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/single-spa/single-spa-alpinejs.git"
},
"author": "",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "pretty-quick && concurrently -n \"yarn test\" \"yarn lint\""
}
},
"bugs": {
"url": "https://github.com/single-spa/single-spa-alpinejs/issues"
},
"homepage": "https://github.com/single-spa/single-spa-alpinejs#readme",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@rollup/plugin-babel": "^5.1.0",
"@types/jest": "^26.0.5",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.5.0",
"eslint-config-important-stuff": "^1.1.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-cli": "^26.1.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rollup": "^2.22.1",
"rollup-plugin-terser": "^6.1.0"
}
}