forked from pixijs/pixi-jsdoc-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "@pixi/jsdoc-template",
"version": "2.4.2",
"description": "PixiJS template for JSDoc 3",
"dependencies": {
"taffydb": "^2.7.2",
"underscore": "^1.7.0"
},
"devDependencies": {
"jshint": "^2.9.2",
"less": "^2.7.1",
"less-plugin-clean-css": "^1.5.1",
"parallelshell": "^3.0.1",
"rimraf": "^2.5.2",
"uglify-js": "^2.6.2",
"watch": "^1.0.2"
},
"scripts": {
"clean": "rimraf static/**/main.*",
"lint": "jshint plugins publish.js src/scripts/*.js",
"build": "npm run clean && npm run lint && npm run build:js && npm run build:css",
"watch": "parallelshell 'npm run watch:js' 'npm run watch:css'",
"build:js": "uglifyjs src/scripts/*.js -m -o static/scripts/main.js",
"watch:js": "watch 'npm run build:js' src/scripts",
"build:css": "lessc src/styles/index.less static/styles/main.css --clean-css",
"watch:css": "watch 'npm run build:css' src/styles",
"test": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/pixijs/pixi-jsdoc-template.git"
},
"keywords": [
"jsdoc",
"jsdoc3",
"pixi.js",
"pixi",
"pixijs",
"template"
],
"files": [
"static",
"tmpl",
"publish.js",
"plugins"
],
"author": "Matt Karl <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/pixijs/pixi-jsdoc-template/issues"
}
}