-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "@solaldr/animate",
"version": "0.4.2",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/umd/index.js",
"types": "dist/esm/index.d.ts",
"license": "MIT",
"homepage": "https://github.com/SolalDR/animate",
"repository": "https://github.com/SolalDR/animate",
"bugs": "https://www.github.com/SolalDR/animate/issues",
"devDependencies": {
"@rollup/plugin-alias": "^3.1.5",
"@rollup/plugin-typescript": "^8.1.0",
"rollup": "^2.40.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-ts": "^1.3.7",
"tslib": "^2.0.3",
"typedoc": "^0.20.28",
"typedoc-neo-theme": "^1.1.0",
"typescript": "^4.1.3"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js",
"pretest": "npm run build",
"deploy": "npm run build && npm run doc && npm publish --access public",
"doc": "typedoc"
},
"files": [
"dist"
],
"dependencies": {
"@solaldr/emitter": "^0.2.2"
}
}