-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.45 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
{
"name": "dommali",
"version": "0.2.6",
"description": "a lightweight DOM manipulation library with jQuery-inspired \"fluent\" API",
"main": "./dist/dommali.umd.js",
"browser":"./dist/dommali.umd.js",
"module": "./dist/dommali.esm.js",
"svelte": "./dist/dommali.esm.js",
"types": "./dist/dommali.d.ts",
"exports": {
".": {
"require":"./dist/dommali.umd.js",
"browser":"./dist/dommali.umd.js",
"import": "./dist/dommali.esm.js",
"svelte": "./dist/dommali.esm.js",
"types": "./dist/dommali.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.js && tsc && mv src/*.d.ts dist && rimraf dist/src && rm src/*.js*",
"agadoo": "agadoo",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rozek/dommali.git"
},
"keywords": [
"javascript",
"typescript",
"jquery",
"dom-manipulation",
"fluent-api"
],
"author": "Andreas Rozek <[email protected]> (https://www.rozek.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rozek/dommali/issues"
},
"homepage": "https://github.com/rozek/dommali#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^8.5.0",
"agadoo": "^2.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.52.1",
"tslib": "^2.6.2",
"typescript": "^4.3.3"
}
}