-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "abyme",
"version": "0.7.4",
"description": "JS companion to abyme gem",
"type": "module",
"repository": {
"url": "https://github.com/bear-in-mind/abyme",
"type": "git"
},
"author": "Romain Sanson <romain.sanson@hey.com> & Louis Sommer <louis.sommer@hey.com>",
"license": "MIT",
"private": false,
"homepage": "https://github.com/bear-in-mind/abyme",
"bugs": "https://github.com/bear-in-mind/abyme/issues",
"peerDependencies": {
"@hotwired/stimulus": "^3.2.1"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/plugin-syntax-class-properties": "7.10.4",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "7.11.5",
"@testing-library/dom": "^7.29.6",
"@types/jest": "^26.0.20",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"microbundle": "^0.15.1",
"mutationobserver-shim": "^0.3.7"
},
"source": "src/index.js",
"main": "dist/abyme.cjs",
"exports": "./dist/abyme.modern.mjs",
"module": "dist/abyme.module.js",
"unpkg": "dist/abyme.umd.js",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"prepublish": "yarn build",
"test": "NODE_ENV=test jest"
},
"browserslist": [
"defaults",
"not IE 11"
],
"jest": {
"setupFiles": [
"<rootDir>/jest/jest-setup.js"
]
}
}