forked from ColinEberhardt/applause-button
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.56 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
{
"name": "applause-button",
"description": "A zero-configuration button for adding applause / claps / kudos to web pages and blog-posts",
"version": "0.0.0-development",
"main": "dist/applause-button.js",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"http-server": "^0.11.1",
"jest": "^24.1.0",
"jest-puppeteer": "^4.0.0",
"node-sass": "^4.9.0",
"prettier": "^1.16.4",
"prettier-check": "^2.0.0",
"puppeteer": "^1.13.0",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0",
"semantic-release": "^15.4.1",
"travis-deploy-once": "^5.0.0",
"watch": "^1.0.2"
},
"scripts": {
"test": "yarn run test:prettier && yarn run test:jest",
"test:jest": "yarn run build && jest",
"test:prettier": "prettier-check src/**/*.js",
"test:server": "http-server -p 8081",
"watch": "watch \"yarn run build\" src",
"build": "yarn run build:scss && yarn run build:js",
"build:scss": "node-sass --output-style compressed -o dist src/applause-button.scss",
"build:js": "rollup -c",
"prepublish": "yarn run build",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"dependencies": {
"document-register-element": "^1.8.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ColinEberhardt/applause-button.git"
},
"jest": {
"preset": "jest-puppeteer"
}
}