-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (88 loc) · 2.92 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "philhosoft-js-playground",
"version": "0.3.0",
"description": "Playground Web Application: playing with JS frameworks / libraries / tools",
"author": "PhiLho <PhiLho(a)GMX.net>",
"contributors":
[
{ "name": "You", "email": "[email protected]" }
],
"keywords":
[
"reactive",
"experiment",
"js",
"frameworks",
"libraries",
"es6",
"es2015"
],
"private": false,
"license": "Zlib",
"repository":
{
"type": "git",
"url": "https://github.com/PhiLhoSoft/Web-Playground.git"
},
"bugs":
{
"url": "https://github.com/PhiLhoSoft/Web-Playground/issues"
},
"homepage": "https://github.com/PhiLhoSoft/Web-Playground#readme",
"main": "src/main/html/index.html",
"dependencies":
{
"jquery": "^2.2.3",
"jquery-ui": "github:jquery/jquery-ui#1.11.4",
"bootstrap": "^3.3.4",
"lodash": "^4.11.1",
"moment": "^2.10.2",
"babel-polyfill": "^6.3.14"
},
"devDependencies":
{
"webpack": "latest",
"webpack-dev-server": "latest",
"extract-text-webpack-plugin": "latest",
"babel-core": "latest",
"babel-loader": "latest",
"babel-runtime": "latest",
"babel-preset-es2015": "latest",
"babel-polyfill": "latest",
"babel-eslint": "latest",
"style-loader": "latest",
"css-loader": "latest",
"postcss-loader": "latest",
"eslint": "latest",
"eslint-loader": "latest",
"painless": "latest",
"istanbul": "latest",
"syn": "latest",
"http-server": "latest",
"opener": "latest"
},
"scripts":
{
"//": "Using Unix commands (rm, cp). On Windows, get UnxUtils or GnuWin32. Well worth it, anyway. Git's bins can do the job, too.",
"clean": "rm -rf dist/*",
"lint": "eslint src/main/js/",
"lintcss": "stylelint --config .stylelintrc.yaml -s scss src/main/sass/*",
"prebuild": "npm run clean",
"build": "",
"postbuild": "cp src/main/html/index.html dist/",
"babel": "babel app/index.js --out-file dist/index.js --source-maps",
"start": "node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"startO": "http-server -a localhost -p 8090 .",
"go": "opener http://localhost:8090/dist/",
"pretest": "npm run lint",
"test": "mocha --harmony --reporter spec",
"test-old": "mocha --harmony --reporter spec --recursive src/test",
"test-browser": "opener src/test/TestBed.html",
"//": "Windows-specific path because of https://github.com/joyent/node/issues/5841",
"test-ph-wr": "mocha-phantomjs --proxy-type=none --web-security=false --harmony --reporter spec -p node_modules/phantomjs/lib/phantom/phantomjs.exe src/test/RequireTests.html",
"test-ph-w": "mocha-phantomjs --harmony --reporter spec -p node_modules/phantomjs/lib/phantom/phantomjs.exe src/test/TestBed.html",
"test-ph-u": "mocha-phantomjs --harmony --reporter spec -p ./node_modules/phantomjs/bin/phantomjs src/test/TestBed.html",
"cover": "istanbul cover node_modules/mocha/bin/_mocha -- --harmony --reporter dot --recursive src/test",
"cover-report": "npm run cover && opener ./coverage/lcov-report/index.html"
}
}