This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.82 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
51
52
53
54
55
56
{
"name": "customize",
"version": "1.3.0",
"private": true,
"description": "Customize the list of packages to use for PixiJS, generates a list of dependencies and a JavaScript source file to include in your project.",
"main": "index.js",
"scripts": {
"clean": "rimraf dist/*",
"types": "tsc -noEmit",
"lint": "tslint --project tsconfig.json -c tslint.json \"src/**/*.{ts,tsx}\" -e **/*.d.ts --format stylish",
"start": "run-p watch launch",
"launch": "http-server dist -o",
"watch": "parcel watch src/index.html -d dist --public-url \".\"",
"build:dev": "parcel build src/index.html -d dist --no-minify --public-url \".\"",
"build:prod": "parcel build src/index.html -d dist --no-source-maps --no-cache --public-url \".\"",
"prebuild": "run-s clean lint types",
"build": "npm run build:prod",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"postversion": "npm run deploy && git push && git push --tags",
"sizes": "node scripts/sizes > src/sizes.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixijs/customize.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pixijs/customize/issues"
},
"pre-commit": [
"types",
"lint"
],
"homepage": "https://github.com/pixijs/customize#readme",
"devDependencies": {
"autoprefixer": "^9.5.1",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"bind-decorator": "^1.0.11",
"bootstrap": "^4.3.1",
"gh-pages": "^2.0.1",
"http-server": "^0.11.1",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.3",
"pre-commit": "^1.2.2",
"preact": "^8.4.2",
"preact-highlight": "^1.1.3",
"rimraf": "^2.6.3",
"tslint": "^5.15.0",
"typescript": "^3.4.3"
}
}