-
Notifications
You must be signed in to change notification settings - Fork 162
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "theaterjs",
"version": "3.2.0",
"description": "Typing effect mimicking human behavior.",
"scripts": {
"lint": "eslint ./src",
"test": "jest --testPathIgnorePatterns dist",
"prebuild": "rm -rf ./dist",
"build": "babel src --out-dir dist --copy-files --ignore **/__tests__/**"
},
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Zhouzi/TheaterJS.git"
},
"keywords": [
"typing",
"animation",
"mimic",
"human"
],
"author": "Gabin",
"license": "MIT",
"bugs": {
"url": "https://github.com/Zhouzi/TheaterJS/issues"
},
"homepage": "https://github.com/Zhouzi/TheaterJS",
"devDependencies": {
"@babel/cli": "7.6.0",
"@babel/core": "7.6.0",
"@babel/preset-env": "7.6.0",
"babel-jest": "24.9.0",
"eslint": "6.3.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.2.0",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-jest": "22.17.0",
"eslint-plugin-prettier": "3.1.0",
"jest": "24.9.0",
"prettier": "1.18.2"
},
"dependencies": {
"random-float": "2.0.0",
"random-int": "2.0.0",
"void-elements": "3.1.0"
}
}