-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 995 Bytes
/
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
{
"name": "selectors-to-array",
"version": "1.0.0",
"description": "Converts CSS selectors, DOM elements and NodeLists into arrays",
"license": "MIT",
"repository": "francoischalifour/selectors-to-array",
"author": {
"name": "Francois Chalifour",
"email": "[email protected]",
"url": "http://francoischalifour.com"
},
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/standard",
"prebuild": "npm run lint",
"build": "./node_modules/.bin/webpack"
},
"pre-commit": [
"lint"
],
"standard": {
"ignore": [
"index.js"
]
},
"keywords": [
"css",
"selector",
"nodelist",
"convert",
"to",
"into",
"array"
],
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"extract-text-webpack-plugin": "^1.0.1",
"pre-commit": "^1.1.3",
"standard": "^7.1.2",
"webpack": "^1.13.1"
}
}