-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
52
{
"name": "tinytyper",
"version": "0.0.1",
"description": "A tiny library for creating typing effect on specified text element",
"author": "Korney Vasilchenko <[email protected]>",
"homepage": "https://github.com/lourenc/tinytyper#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lourenc/tinytyper.git"
},
"bugs": {
"url": "https://github.com/lourenc/tinytyper/issues"
},
"keywords": [
"typing",
"text",
"effect",
"cursor",
"blinking"
],
"license": "MIT",
"main": "lib/tinytyper.js",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"eslint": "^3.8.1",
"eslint-config-standard": "^6.2.1",
"eslint-loader": "^1.6.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"jsdom": "^9.8.3",
"jsdom-global": "^2.1.0",
"mocha": "^3.1.2",
"webpack": "^1.13.3",
"webpack-livereload-plugin": "^0.9.0",
"yargs": "^6.3.0"
},
"scripts": {
"build": "webpack --mode=build",
"dev": "webpack --progress --colors --watch --mode=dev",
"test:watch": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js -r jsdom-global/register",
"test": "mocha --compilers js:babel-core/register --colors ./test/*.spec.js -r jsdom-global/register",
"lint": "eslint .",
"pretest": "npm run build"
}
}