-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.03 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
67
68
69
70
71
72
{
"name": "marking-menu",
"version": "0.10.0",
"description": "Marking Menu Implementation in JavaScript.",
"main": "marking-menu.js",
"files": [
"marking-menu.js",
"marking-menu.js.map"
],
"repository": {
"type": "git",
"url": "https://github.com/QuentinRoy/Marking-Menu.git"
},
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"codecov-test": "yarn test --coverage",
"watch-test": "yarn test --watch",
"build": "cross-env NODE_ENV=production rollup --config build-config/rollup.config.js",
"copy-demo-files": "node ./build-config/copy-demo-files",
"watch": "yarn build --watch",
"prepare": "yarn build && yarn copy-demo-files",
"release": "standard-version",
"lint": "eslint src",
"serve": "serve docs",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"author": "Quentin Roy <[email protected]>",
"license": "MIT",
"dependencies": {
"raf-schd": "^4.0.3",
"rxjs": "^7.5.5"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"angles": "^0.2.4",
"babel-jest": "^27.5.1",
"cross-env": "^7.0.3",
"csv-parse": "^5.0.4",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"pinst": "^3.0.0",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"rollup": "^2.70.1",
"rollup-plugin-postcss": "^4.0.2",
"rxjs-marbles": "^7.0.1",
"serve": "^13.0.2",
"standard-version": "^9.3.2"
},
"keywords": [
"marking-menu",
"interaction",
"technique"
],
"peerDependencies": {
"rxjs": "^7.5.5"
},
"packageManager": "[email protected]"
}