-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "@pickra/copy-code-block",
"version": "1.2.0",
"description": "A solution to display code in the browser and copy it to the clipboard",
"repository": {
"type": "git",
"url": "https://github.com/Pickra/copy-code-block.git"
},
"main": "dist/copyCodeBlock.js",
"scripts": {
"start": "start-storybook --ci -p 8080 -c .storybook",
"test": "nightwatch",
"pages": "build-storybook -c .storybook -o public",
"build": "rm -rf dist && webpack -p",
"preversion": "npm run build",
"version": "npx conventional-changelog-cli -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"postversion": "npm publish && git push origin master && git push origin --tags"
},
"keywords": [
"copy",
"code",
"clipboard"
],
"author": "Ari Picker",
"license": "0BSD",
"devDependencies": {
"@babel/core": "7.1.6",
"@babel/plugin-proposal-object-rest-spread": "7.2.0",
"@babel/preset-env": "7.2.0",
"@storybook/html": "4.0.10",
"babel-loader": "8.0.4",
"chromedriver": "2.44.1",
"concurrently": "4.1.0",
"highlight.js": "^9.13.1",
"nightwatch": "1.0.14",
"selenium-server": "3.141.59",
"url-loader": "^1.1.2",
"webpack": "4.27.1",
"webpack-cli": "3.1.2"
},
"dependencies": {
"csjs": "^1.1.0",
"insert-css": "^2.0.0"
}
}