-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.01 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.01 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
{
"name": "tiny-spring",
"version": "1.0.0",
"description": "Simple spring dynamics for physics-driven animations",
"keywords": [
"spring",
"animated",
"animation",
"physics",
"spring dynamics"
],
"author": "Asbjørn Hegdahl",
"repository": {
"type": "git",
"url": "https://github.com/asbjornh/tiny-spring.git"
},
"license": "MIT",
"main": "./spring.js",
"files": [
"spring.js",
"spring.d.ts",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "webpack-dev-server --mode=development",
"test": "yarn build && ava",
"test:ci": "ava"
},
"dependencies": {},
"devDependencies": {
"ava": "^2.4.0",
"css-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"prettier": "^1.9.2",
"suppress-chunks-webpack-plugin": "^1.0.5",
"ts-loader": "^6.2.1",
"typescript": "^3.6.4",
"webpack": "^4.10.1",
"webpack-cli": "^3.0.2",
"webpack-dev-server": "^3.1.4"
}
}