-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
78 lines (78 loc) · 2.12 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "greek-in-tech-site",
"version": "1.0.0",
"description": "An ES6, Backbone, single page application (SPA), that demonstrates many greek words and names that we constantly use on modern computing and software engineering.",
"main": "index.html",
"private": true,
"scripts": {
"start": "webpack-dev-server --devtool eval --progress --colors --hot --display-error-details",
"build": "webpack -p",
"test-webserver": "live-server --no-browser &",
"test": "npm run test-unit",
"test-unit": "mocha --compilers js:babel-register",
"test-functional": "casperjs test tests-functional/simple.js",
"lint": "xo src/**.js test/**.js tests-functional/**.js"
},
"dependencies": {
"backbone": "^1.3.3",
"greek-in-tech": "^1.0.0",
"hammerjs": "^2.0.8",
"jquery": "^3.3.1",
"requirejs": "^2.3.5",
"underscore": "^1.9.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"casperjs": "1.1.4",
"chai": "^4.1.2",
"compass-mixins": "^0.12.10",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^1.0.1",
"live-server": "^1.2.0",
"mocha": "^5.2.0",
"node-sass": "^4.9.0",
"phantomjs-prebuilt": "2.1.16",
"raw-loader": "^0.5.1",
"requirejs-text": "^2.0.15",
"sass-loader": "^7.0.2",
"style-loader": "^0.21.0",
"webpack": "^1.15.0",
"webpack-dev-server": "^1.16.5",
"xo": "^0.21.1",
"xo-loader": "^0.8.0"
},
"xo": {
"rules": {
"import/no-unresolved": 0,
"xo/filename-case": 0,
"babel/object-curly-spacing": 0,
"no-unused-expressions": [
2,
{
"allowTernary": true
}
],
"unicorn/filename-case": 0,
"func-names": 0,
"object-curly-spacing": [
"error",
"always"
],
"import/no-unassigned-import": 0,
"no-new": 0
},
"envs": [
"browser",
"node",
"mocha"
],
"globals": [
"casper"
]
},
"author": "John Tsevdos <[email protected]> (http://tsevdos.me)",
"license": "GPL3"
}