-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 984 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
{
"name": "@eoussama/typewriter",
"version": "6.0.0",
"description": "Javascript utility for advanced typewriter-like animations.",
"main": "./src/index.ts",
"scripts": {
"clean": "rm -rf ./dist",
"sandbox": "npx http-server -o ./test/sandbox/sandbox.html",
"docs": "npx typedoc src/index.ts",
"build:dev": "npx tsc --watch",
"test": "npx jest",
"build": "npx tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EOussama/typewriter.js.git"
},
"keywords": [
"animation",
"typewriter",
"js",
"library",
"utility"
],
"author": "EOussama",
"license": "MIT",
"bugs": {
"url": "https://github.com/EOussama/typewriter.js/issues"
},
"homepage": "https://github.com/EOussama/typewriter.js#readme",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"devDependencies": {
"http-server": "^13.0.2",
"jest": "^27.4.4",
"typedoc": "^0.22.10",
"typescript": "^4.4.3"
}
}