-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.32 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
{
"name": "quick-gif.js",
"version": "0.0.1",
"description": "A simple and quick gif encoding library in JavaScript.",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build":
"./node_modules/.bin/webpack --config webpack.config.worker.js && ./node_modules/.bin/webpack",
"format":
"./node_modules/.bin/prettier es6 --write \"{src/**/*.{ts,js},webpack.config.js}\"",
"precommit": "./node_modules/.bin/lint-staged",
"build-example":
"npm run build && ./node_modules/.bin/webpack --config example/webpack.config.js",
"prepublish": "npm run build"
},
"lint-staged": {
"*.{js,json,css,scss,md,ts}": ["npm run format", "git add"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/tshaddix/quick-gif.js.git"
},
"author": "Tyler Shaddix <tylershaddix@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tshaddix/quick-gif.js/issues"
},
"homepage": "https://github.com/tshaddix/quick-gif.js#readme",
"devDependencies": {
"@types/node": "^9.3.0",
"awesome-typescript-loader": "^3.4.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.1",
"prettier": "^1.10.2",
"raw-loader": "^0.5.1",
"source-map-loader": "^0.2.3",
"typescript": "^2.6.2",
"webpack": "^3.10.0"
}
}