-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
39 lines (39 loc) · 1.22 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
{
"name": "particlejs",
"version": "1.0.0",
"description": "![Particle Develop](https://ics.media/wp-content/uploads/2016/01/160125_particle_develop.png)",
"main": "libs/particlejs.js",
"types": "libs/d.ts/particlejs.d.ts",
"devDependencies": {
"gulp": "^4.0.2",
"gulp-shell": "^0.7.1",
"gulp-typedoc": "^2.2.0",
"gulp-typescript": "^5.0.1",
"gulp-uglify": "^3.0.0",
"lite-server": "^2.5.4",
"prettier": "^1.12.1",
"ts-loader": "^6.0.4",
"typedoc": "^0.15.0",
"typescript": "^3.5.3",
"uglify-js": "^3.3.21",
"watch": "^1.0.2",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
},
"scripts": {
"start": "gulp start",
"sync": "lite-server & watch 'gulp build-particle-system' src",
"generate-documentation": "gulp typedoc; cd generate-examples-code; node index;",
"format": "prettier --write 'src/**/*.ts' && prettier --write '*.js'"
},
"repository": "ics-creative/ParticleJS",
"author": "Nozomi Nohara <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ics-creative/ParticleJS/issues"
},
"homepage": "https://github.com/ics-creative/ParticleJS#readme",
"dependencies": {
"@types/createjs": "^0.0.29"
}
}