-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
77 lines (77 loc) · 2.73 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
73
74
75
76
77
{
"name": "ilyabirman-likely",
"description": "The social sharing buttons that aren’t shabby",
"version": "4.0.0-dev",
"repository": {
"type": "git",
"url": "https://github.com/ilyabirman/Likely.git"
},
"author": {
"name": "Ilya Birman",
"url": "http://ilyabirman.net/"
},
"contributors": [
{
"name": "Nikolay Rys",
"email": "nikolay@rys.me",
"url": "https://www.linkedin.com/in/nikolay-rys/"
},
"Viktor Karpov",
"Aleksandra Rys",
"Ivan Akulov",
"Dmitry Sivukhin"
],
"license": "MIT",
"main": "release/likely-commonjs.js",
"scripts": {
"build:dev:dom": "webpack --progress --profile --node-env=development --env commonjs=false",
"build:dev:commonjs": "webpack --progress --profile --node-env=development --env commonjs=true",
"build:prod:dom": "webpack --progress --profile --node-env=production --env commonjs=false",
"build:prod:commonjs": "webpack --progress --profile --node-env=production --env commonjs=true",
"build:dev": "npm run build:dev:dom && npm run build:dev:commonjs",
"build:prod": "npm run build:prod:dom && npm run build:prod:commonjs",
"build": "npm run build:dev && npm run build:prod",
"lint": "eslint ./",
"fix-codestyle": "eslint ./ --fix",
"integration-tests": "mocha --exit test/index.js",
"focus": "mocha --exit test/index.js -g 'focus'",
"test": "npm run integration-tests && npm run lint",
"prepare-release": "mkdir release/archive && cp release/likely.min.js release/archive/likely.js && cp release/likely.min.css release/archive/likely.css",
"zip": "cd release/archive && bestzip ../$npm_package_name-$npm_package_version.zip *",
"clean-up-release": "rm -rf release/archive",
"release": "npm run prepare-release && npm run zip && npm run clean-up-release",
"prepublish": "in-publish && npm run test || not-in-publish"
},
"files": [
"release/*.css",
"release/*.js",
"release/*.map",
"LICENCE.txt"
],
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"babel-loader": "^9.2.1",
"babel-plugin-add-module-exports": "^1.0.4",
"bestzip": "^2.2.1",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"chromedriver": "^131.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"cssnano": "^7.0.1",
"eslint": "^9.16.0",
"eslint-plugin-jsdoc": "^50.6.0",
"in-publish": "^2.0.1",
"mini-css-extract-plugin": "^2.9.2",
"mocha": "^10.8.2",
"selenium-webdriver": "^4.27.0",
"static-server": "^3.0.0",
"style-loader": "^4.0.0",
"stylus": "^0.64.0",
"stylus-loader": "^8.1.1",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.97.0",
"webpack-cli": "^5.1.4"
}
}