-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.04 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.04 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
{
"name": "galaw",
"version": "0.0.0",
"description": "JavaScript animation library",
"homepage": "https://github.com/cedmandocdoc/galaw",
"main": "dist/galaw.cjs.js",
"module": "dist/galaw.esm.js",
"browser": "dist/galaw.umd.js",
"repository": "git@github.com:cedmandocdoc/galaw.git",
"author": "Cedrick Mandocdoc <cedrickmandocdoc@gmail.com>",
"license": "MIT",
"private": false,
"files": [
"dist/**/*"
],
"scripts": {
"lint": "eslint 'src/**/*.js'",
"format": "prettier --write 'src/**/*.js'",
"clean": "rm -rf ./dist",
"build": "yarn clean && rollup -c",
"dev": "yarn clean && rollup -c -w -m",
"test": "jest",
"prepare": "yarn lint && yarn format && yarn test && yarn build"
},
"dependencies": {
"@types/jest": "^24.0.25",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"rollup": "^1.27.14",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
}
}