forked from NikolayRys/Likely
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.68 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
{
"name": "ilyabirman-likely",
"description": "The social sharing buttons that aren’t shabby",
"version": "3.0.0",
"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"
],
"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",
"check-codestyle": "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 check-codestyle",
"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.21.8",
"@babel/preset-env": "^7.21.5",
"babel-loader": "^9.1.2",
"babel-plugin-add-module-exports": "^1.0.4",
"bestzip": "^2.2.1",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chromedriver": "^112.0.1",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"cssnano": "^6.0.1",
"eslint": "^8.39.0",
"in-publish": "^2.0.1",
"mini-css-extract-plugin": "^2.7.5",
"mocha": "^10.2.0",
"selenium-webdriver": "^4.9.0",
"static-server": "^2.2.1",
"style-loader": "^3.3.2",
"stylus": "^0.59.0",
"stylus-loader": "^7.1.0",
"terser-webpack-plugin": "^5.3.7",
"webpack": "^5.82.0",
"webpack-cli": "^5.0.2"
}
}