-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.81 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.81 KB
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
{
"name": "tealight",
"version": "0.3.6",
"description": "DOM queries that always return an array",
"types": "src/index.d.ts",
"main": "dist/tealight.js",
"module": "dist/tealight.es.js",
"jsnext:main": "dist/tealight.es.js",
"files": [
"dist",
"src/index.d.ts"
],
"scripts": {
"prebuild": "rm -rf dist/*",
"build": "npm run bundle && npm run bundle:min",
"bundle": "rollup -c ./build/rollup.conf.js",
"bundle:min": "rollup -c ./build/rollup.conf.min.js",
"lint": "./node_modules/eslint/bin/eslint.js src test",
"pretest": "rm -rf .ignore/coverage/**/ && npm run lint",
"test": "./node_modules/karma/bin/karma start ./test/karma.conf.js",
"testing": "cross-env COVERAGE=true npm test -- --no-single-run",
"coverage": "cross-env COVERAGE=true npm test"
},
"repository": "jlmakes/tealight",
"keywords": [
"html",
"dom",
"element",
"utility",
"query",
"selector"
],
"dependencies": {
"is-dom-node": "^1.0.4",
"is-dom-node-list": "^1.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"eslint": "^7.16.0",
"karma": "^5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-coveralls": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^7.0.5",
"karma-sauce-launcher": "^4.3.4",
"karma-sinon-chai": "^2.0.2",
"mocha": "^8.2.1",
"rollup": "^2.35.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-istanbul": "^3.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4",
"rollup-watch": "^4.3.1",
"sinon": "^9.2.2",
"sinon-chai": "^3.5.0"
},
"author": "Julian Lloyd <tealight@jlmak.es>",
"license": "MIT"
}