-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.15 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
76
77
78
79
80
81
82
83
84
85
{
"name": "tiny-dom-helpers",
"version": "1.2.4",
"author": "[email protected]",
"description": "Tiny dom helpers.",
"license": "MIT",
"main": "dist/index.js",
"typings": "types/index.d.ts",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/dwqs/tiny-dom-helpers"
},
"keywords": [
"tiny",
"dom",
"tiny dom",
"dom api",
"dom helpers",
"dom-helpers",
"react-component",
"vue-component",
"cross-browser",
"style",
"css",
"height",
"width",
"class",
"classlist",
"offset"
],
"scripts": {
"test": "npm run ava && npm run karma",
"karma": "./node_modules/.bin/karma start",
"ava": "./node_modules/.bin/ava ./ava-test/**/*.test.js",
"prepush": "npm run lint",
"build": "npx rollup -c",
"lint": "npx eslint src/**/*.js",
"fix": "npx eslint --fix src/**/*.js"
},
"ava": {
"require": "babel-register",
"babel": "inherit"
},
"devDependencies": {
"ava": "github:jamestalmage/ava#karma-ava",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.1",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.2",
"jquery": "^3.2.1",
"jsdom": "^11.1.0",
"karma": "^1.7.0",
"karma-ava": "0.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"mocha": "^3.5.0",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-cleanup": "^1.0.1",
"webpack": "^3.4.1"
},
"dependencies": {},
"homepage": "https://github.com/dwqs/tiny-dom-helpers",
"bugs": {
"url": "https://github.com/dwqs/tiny-dom-helpers/issues"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 5.2.0"
}
}