-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathpackage.json
70 lines (70 loc) · 1.75 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
{
"name": "@fdaciuk/ajax",
"description": "Ajax module in Vanilla JS",
"version": "3.0.4",
"main": "dist/ajax.min.js",
"scripts": {
"test": "concurrently --kill-others --success=first 'node api/index.js' 'karma start --single-run'",
"test:watch": "concurrently --kill-others 'node api/index.js' 'gulp'",
"lint": "standard --verbose | snazzy",
"lint:fix": "standard --fix",
"format": "standard-format -w",
"preversion": "yarn lint && yarn test",
"postversion": "gulp deploy",
"pub": "npm publish --access=public",
"pub:beta": "npm publish --access=public --tag beta"
},
"directories": {
"test": "test"
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fdaciuk/ajax.git"
},
"keywords": [
"ajax",
"xmlhttprequest",
"xhr"
],
"author": "Fernando Daciuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/fdaciuk/ajax/issues"
},
"homepage": "https://github.com/fdaciuk/ajax",
"standard": {
"globals": [
"describe",
"it",
"beforeEach",
"define",
"XMLHttpRequest"
]
},
"devDependencies": {
"body-parser": "^1.15.0",
"chai": "^3.5.0",
"concurrently": "^2.1.0",
"cors": "^2.7.1",
"express": "^4.13.4",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-header": "^1.7.1",
"gulp-mocha-phantomjs": "^0.11.0",
"gulp-uglify": "^1.5.3",
"karma": "^0.13.21",
"karma-coverage": "^0.5.4",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^1.2.3",
"karma-phantomjs-launcher": "^1.0.0",
"mocha": "^2.4.5",
"multer": "^1.1.0",
"plato": "^1.5.0",
"snazzy": "^7.0.0",
"standard": "^10.0.2",
"standard-format": "^2.1.1"
}
}