-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.7 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
{
"name": "@stephanepericat/svg-audio-controls",
"version": "2.2.1",
"description": "A set of UI controls for web-based audio apps.",
"main": "dist/main.js",
"scripts": {
"build": "rimraf ./dist && webpack",
"release": "yarn build && yarn publish --patch",
"test": "jest --verbose",
"test:ci": "jest --coverageReporters=text-lcov | coveralls",
"test:watch": "jest --verbose --watch",
"storybook": "start-storybook -p 6006 -s ./stories/public",
"build-storybook": "build-storybook -s ./stories/public"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/stephanepericat/svg-audio-controls.git"
},
"files": [
"dist",
"src"
],
"author": "Stephane P. Pericat <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stephanepericat/svg-audio-controls/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"homepage": "https://github.com/stephanepericat/svg-audio-controls#readme",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/html": "^6.1.21",
"babel-jest": "^24.9.0",
"babel-loader": "^8.2.2",
"coveralls": "^3.0.9",
"husky": "^3.1.0",
"jasmine-expect": "^4.0.3",
"jest": "^24.9.0",
"jest-transform-stub": "^2.0.0",
"rgb2hex": "^0.2.5",
"rimraf": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"dependencies": {
"@svgdotjs/svg.js": "^3.0.16"
}
}