-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.83 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
{
"name": "overflow-color",
"version": "2.3.0",
"description": "Automatically switch css html background color",
"main": "dist/overflow-color.cjs.js",
"module": "dist/overflow-color.esm.js",
"browser": "dist/overflow-color.umd.js",
"scripts": {
"publish": "clean-publish --files cypress fixtures cypress.json",
"start:ci": "http-server ./ -a localhost -p 8000 -c-1",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"cypress": "npm run build && run-p --race start:ci cypress:open",
"test": "npm run build && run-p --race start:ci cypress:run",
"build": "rollup -c && uglifyjs dist/overflow-color.umd.js -o dist/overflow-color.umd.min.js -m",
"lint": "eslint src/**/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dimitrinicolas/overflow-color.git"
},
"keywords": [
"overscroll",
"overflow",
"color",
"css",
"front-end",
"javascript"
],
"author": "Dimitri NICOLAS <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dimitrinicolas/overflow-color/issues"
},
"homepage": "https://github.com/dimitrinicolas/overflow-color",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"clean-publish": "^1.0.9",
"cypress": "^3.1.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"http-server": "^0.11.1",
"install": "^0.12.1",
"npm": "^6.4.0",
"npm-run-all": "^4.1.3",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-node-resolve": "^3.3.0",
"uglify-js": "^3.4.7"
}
}