-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "tinygif",
"version": "2.3.0",
"description": "Fast and efficient animated gif creator in EcmaScript.",
"main": "dist/tinygif.js",
"directories": {
"src": "src",
"dist": "dist",
"test": "tests"
},
"scripts": {
"clean": "rimraf dist",
"build": "npx webpack",
"build:watch": "npx webpack --colors --watch",
"lint": "./node_modules/.bin/eslint src",
"lint-fix": "./node_modules/.bin/eslint --fix src --ext .js",
"test": "npm run lint",
"start": "npx webpack-dev-server --open"
},
"keywords": [],
"author": "Jeff Rafter",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^14.5.0",
"cross-env": "^5.1.1",
"eslint": "^4.12.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"express": "^4.16.2",
"rimraf": "^2.6.2",
"webpack": "^3.0.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"worker-loader": "^1.1.0"
},
"babel": {
"presets": [
"env"
]
}
}