forked from shipshapecode/tether
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.24 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "tether",
"version": "2.0.0-beta.2",
"description": "A client-side library to make absolutely positioned elements attach to elements in the page efficiently.",
"authors": [
"Zack Bloom <[email protected]>",
"Adam Schwartz <[email protected]>"
],
"maintainers": [
"Nicholas Hwang <[email protected]>",
"Trevor Burnham <[email protected]>"
],
"scripts": {
"build": "yarn clean && rollup -c",
"clean": "rimraf dist",
"cy:open": "./node_modules/.bin/cypress open",
"cy:run": "./node_modules/.bin/cypress run",
"lint:js": "eslint . --ext js",
"start-test-server": "http-server -p 9002",
"test": "yarn lint:js && yarn test:ci",
"test:ci": "yarn test:unit:ci && yarn test:cy:ci",
"test:cy:ci": "yarn build && start-server-and-test start-test-server http://localhost:9002 cy:run",
"test:cy:watch": "yarn build && start-server-and-test start-test-server http://localhost:9002 cy:open",
"test:unit:ci": "jest --coverage",
"test:unit:watch": "jest --watch",
"watch": "rollup --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/HubSpot/tether.git"
},
"license": "MIT",
"main": "dist/js/tether.js",
"module": "dist/js/tether.esm.js",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@testing-library/jest-dom": "^4.1.0",
"autoprefixer": "^9.6.1",
"babel-jest": "^24.9.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"chai": "^4.2.0",
"cssnano": "^4.1.10",
"cypress": "^3.4.1",
"eslint": "^6.4.0",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-ship-shape": "^0.6.0",
"http-server": "^0.11.1",
"jest": "^24.9.0",
"jest-expect-message": "^1.0.2",
"jest-transform-css": "^2.0.0",
"mutationobserver-shim": "^0.3.3",
"postcss": "^7.0.18",
"rimraf": "^3.0.0",
"rollup": "^1.21.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-filesize": "^6.2.0",
"rollup-plugin-license": "^0.12.1",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-visualizer": "^2.6.0",
"sinon": "^7.4.2",
"start-server-and-test": "^1.10.2"
}
}