-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.27 KB
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
{
"name": "lights",
"version": "1.0.0",
"private": true,
"description": "Lights Out game built with vue.js",
"author": "Gerald <i@gerald.top>",
"scripts": {
"start": "babel-node tools/build.js",
"clean": "node -e \"require('del')(['dist'])\"",
"predeploy": "npm run build",
"deploy": "gh-pages -td dist",
"prebuild": "npm run lint",
"lint": "eslint --ext .js,.vue .",
"analyze": "plaid analyze",
"dev": "plaid develop",
"build": "plaid build",
"svgo": "plaid svgo"
},
"engines": {
"node": ">=8"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"license": "MIT",
"keywords": [
"vue",
"lights"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/intellilab/lights.git"
},
"bugs": {
"url": "https://github.com/intellilab/lights/issues"
},
"homepage": "https://github.com/intellilab/lights#readme",
"devDependencies": {
"@gera2ld/plaid": "~1.5.6",
"@gera2ld/plaid-vue": "~1.5.5",
"@gera2ld/plaid-webpack": "~1.5.0",
"gh-pages": "^2.2.0",
"husky": "^4.2.3"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"@gera2ld/rem": "^0.1.2",
"core-js": "^3.6.4",
"pixi.js": "^5.2.1",
"vue": "^2.6.11"
}
}