forked from custom-select/custom-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.99 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
{
"name": "custom-select",
"description": "A lightweight JavaScript library for custom HTML <select> creation and managing. No dependencies needed.",
"version": "1.1.17",
"main": "build",
"repository": {
"type": "git",
"url": "https://github.com/custom-select/custom-select.git"
},
"bugs": {
"url": "https://github.com/custom-select/custom-select/issues"
},
"scripts": {
"clean": "rimraf build && mkdir build && rimraf examples/build && mkdir examples/build && cpx src/css/custom-select.css build/",
"test": "cross-env NODE_PATH=src browserify -t babelify src/test/index.js | tape-run",
"prebuild": "npm run clean",
"build": "babel src/index.js -s -o build/index.js && browserify src/global.js -o build/custom-select.min.js -t [ babelify ] -p [minifyify --no-map] && browserify src/jquery-adaptor.js -o build/jquery.custom-select.min.js -t [ babelify ] -p [minifyify --no-map]",
"prepublish": "npm run build"
},
"keywords": [
"select",
"custom select",
"html select"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.0.2",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"browserify": "^16.2.3",
"cpx": "^1.5.0",
"cross-env": "^5.1.1",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"minifyify": "^7.3.5",
"rimraf": "^2.6.2",
"tape": "^4.9.0",
"tape-run": "^3.0.4"
},
"dependencies": {
"custom-event-polyfill": "^1.0.7"
},
"author": {
"name": "Gionatan Lombardi",
"url": "https://github.com/gionatan-lombardi"
},
"contributors": [
{
"name": "Marco Nucara",
"url": "https://github.com/nuky89"
},
{
"name": "Simone Scalbi",
"url": "https://github.com/pennywiz"
}
],
"license": "MIT"
}