-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.74 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "pulsator",
"version": "2.2.0",
"description": "Pulse animation with Web Animations API inspired by Pulsator",
"main": "lib/pulsator.js",
"types": "lib/pulsator.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src/*.ts",
"build": "npm-run-all -s clean -p build:esm build:demo",
"build:esm": "tsc",
"build:demo": "webpack",
"clean": "rimraf lib",
"dev": "webpack serve",
"prerelease": "run-s build standard-version",
"standard-version": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shisama/Pulsator-JS.git"
},
"keywords": [
"pulsator",
"pulse",
"animation"
],
"files": [
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE",
"lib"
],
"author": "Masashi Hirano",
"license": "MIT",
"bugs": {
"url": "https://github.com/shisama/Pulsator-JS/issues"
},
"homepage": "https://github.com/shisama/Pulsator-JS#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"@webpack-cli/generators": "2.2.0",
"eslint": "7.31.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "4.1.0",
"npm-run-all": "^4.1.5",
"prettier": "2.3.0",
"rimraf": "3.0.2",
"standard-version": "^9.3.0",
"ts-loader": "^9.2.2",
"typescript": "4.3.5",
"webpack": "5.47.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"yarn": "^2.0.0-rc.27"
}
}