-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.53 KB
/
package.json
File metadata and controls
55 lines (55 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@dhl-uu/jquery-promise",
"version": "1.1.1",
"description": "A lightweight Promise polyfill based on Promises/A+ compliant $.Deferred from jQuery 3",
"keywords": [
"jquery",
"promise",
"polyfill",
"es6",
"es2015",
"promises-aplus"
],
"bugs": "https://github.com/UUDigitalHumanitieslab/jquery-promise/issues",
"repository": "github:UUDigitalHumanitieslab/jquery-promise",
"author": "Julian Gonggrijp, Digital Humanities Lab, Utrecht University",
"license": "BSD-3-Clause",
"main": "jquery-promise.js",
"files": [
"jquery-promise.js*"
],
"scripts": {
"prepare": "babel --no-babelrc --presets @babel/preset-env --plugins @babel/plugin-transform-modules-umd -so jquery-promise.js jquery-promise.es6",
"pretest": "browserify test.es6 -d -o test.js --extension=.es6 -t [ babelify --no-babelrc --presets [ @babel/env ] ]",
"test": "echo please open the test.html in a browser of choice",
"prepublishOnly": "npm run test"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-modules-umd": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"jquery": "^3.4.1",
"promises-aplus-tests-refreshed": "^2.3.3"
},
"peerDependencies": {
"jquery": "3"
},
"babel": {
"presets": [
"env"
],
"plugins": [
[
"transform-es2015-modules-umd",
{
"globals": {
"jquery": "jQuery"
}
}
]
]
}
}