-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "particle-wave",
"version": "1.1.3",
"description": "WebGL粒子波浪",
"author": "jekorx",
"main": "lib/particle-wave.js",
"private": false,
"files": [
"lib",
"types"
],
"typings": "./types/index.d.ts",
"scripts": {
"build": "webpack --config build/webpack.prod.conf.js",
"build:show": "webpack --config build/webpack.show.conf.js",
"build:all": "webpack --config build/webpack.prod.conf.js && webpack --config build/webpack.show.conf.js"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-loader": "^8.0.5",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jekorx/particle-wave.git"
},
"bugs": {
"url": "https://github.com/jekorx/particle-wave/issues"
},
"homepage": "https://github.com/jekorx/particle-wave#readme",
"keywords": [
"particle",
"wave",
"particle-wave",
"webgl"
],
"license": "MIT"
}