-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 877 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 877 Bytes
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
{
"name": "tic",
"version": "1.0.0",
"description": "tic tac toe",
"main": "index.js",
"scripts": {
"watchjs": "watchify index.js -t node-underscorify -d -o app.js -v",
"buildjs": "browserify index.js -t node-underscorify -o app.js",
"buildcss": "lessc styles/base.less styles/styles.css",
"lint": "eslint ./index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"browserify": "^14.4.0",
"jquery": "^3.2.1",
"underscore": "^1.8.3",
"watchify": "^3.9.0"
},
"devDependencies": {
"backbone": "^1.3.3",
"eslint": "^4.5.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^4.0.0",
"node-underscorify": "0.0.14",
"standard": "^10.0.3"
}
}