-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 958 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "particles.ts",
"version": "0.0.1",
"homepage": "https://github.com/TemplarVolk/particles.ts",
"author": "Volk <me@volk.pt>",
"license": "MIT",
"description": "A highly configurble javascript library for creating interactive particles in the browser",
"main": "lib/particles.js",
"types": "lib/particles.d.ts",
"devDependencies": {
"babel-minify": "^0.5.0",
"typescript": "^3.2.4"
},
"scripts": {
"build": "npm run build-amd && npm run build-dist",
"build-amd": "tsc src/particles.ts --outDir lib --lib es6,DOM -d --noImplicitUseStrict",
"build-dist": "node build.js && tsc tmp/bundle.ts --outFile dist/particles.js --lib es6,DOM --module none && minify dist/particles.js --out-file dist/particles.min.js --mangle.keepClassName && rm -r tmp",
"watch": "tsc src/particles.ts --outFile example/particles.js --lib es6,DOM --module amd --watch --noImplicitUseStrict"
},
"files": [
"lib/**/*"
]
}