-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.53 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.53 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
{
"name": "starcounter-include",
"version": "5.4.0",
"description": "Custom Element to include HTML partials/templates from Starcounter",
"main": "starcounter-include.html",
"directories": {
"test": "test"
},
"devDependencies": {
"concurrently": "^3.5.0",
"connect": "^3.6.6",
"grunt": "^1.0.3",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-watch": "^1.1.0",
"path": "^0.12.7"
},
"scripts": {
"serve": "concurrently -n \"mocked SC,polyserve\" \"npm run mockserver\" \"npm run polyserve\" --kill-others -s first",
"polyserve": "polyserve --proxy-target http://127.0.0.1:9999/sc --proxy-path sc --hostname 0.0.0.0",
"test": "concurrently -n \"mocked SC,WCT\" \"npm run mockserver\" \"npm run wct\" --kill-others -s first",
"test:no-sauce": "concurrently -n \"mocked SC,WCT\" \"npm run mockserver\" \"npm run wct:no-sauce\" --kill-others -s first",
"test:sauce-only": "concurrently -n \"mocked SC,WCT\" \"npm run mockserver\" \"npm run wct:sauce-only\" --kill-others -s first",
"mockserver": "node test/mocked_sc_htmlmerger.js",
"wct": "wct",
"wct:no-sauce": "wct --skip-plugin sauce",
"wct:sauce-only": "wct --skip-plugin local --plugin sauce"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Starcounter/starcounter-include.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Starcounter/starcounter-include/issues"
},
"homepage": "https://github.com/Starcounter/starcounter-include#readme"
}