forked from alexmacarthur/typeit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.8 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.8 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "typeit",
"version": "6.0.0",
"description": "The most versatile animated typing utility on the planet.",
"author": "Alex MacArthur <alex@macarthur.me> (https://macarthur.me)",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/alexmacarthur/typeit/issues"
},
"homepage": "https://typeitjs.com",
"main": "dist/typeit.min.js",
"module": "dist/typeit.min.js",
"files": [
"dist/"
],
"scripts": {
"build": "NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=webpack.config.js && prettier src/* --write && prettier __tests__/* --write",
"watch": "NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=webpack.config.js && prettier src/* --write && prettier __tests__/* --write",
"serve": "concurrently --kill-others \"npm run watch\" \"node serve.js\"",
"analyze": "node_modules/webpack/bin/webpack.js --profile --json > stats.json",
"prettify-and-add": "prettier \"./**/*.js\" --write && git add -A",
"test": "jest",
"postinstall": "node ./notice.js"
},
"keywords": [
"javascript",
"animated",
"typing",
"typing effect",
"typewriter",
"typewriter effect",
"type effect",
"text effects"
],
"pre-commit": [
"prettify-and-add"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alexmacarthur/typeit.git"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"concurrently": "^3.5.1",
"express": "^4.16.2",
"jest-cli": "^21.2.1",
"pre-commit": "^1.2.2",
"prettier": "^1.15.3",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
}
}