-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.16 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
{
"name": "better-jsonp",
"version": "1.1.3",
"description": "A simple JSONP implementation",
"main": "dist/better-jsonp.min.js",
"unpkg": "dist/better-jsonp.js",
"jsdelivr": "dist/better-jsonp.js",
"files": [
"lib",
"dist/*.js"
],
"scripts": {
"ts": "npx tsc",
"dev": "node docs/server.js",
"build": "yarn run cleaner && yarn run build:prod && yarn run build:dev",
"build:prod": "npx rollup -c scripts/rollup.config.js --environment TARGET:production",
"build:dev": "npx rollup -c scripts/rollup.config.js --environment TARGET:development",
"test": "echo 'Under construction'",
"lint": "npx eslint --fix --ext .js lib/ docs/ scripts/",
"release": "sh scripts/release.sh",
"cleaner": "rm -vrf dist/*",
"commit": "yarn run lint && git add . && git-cz",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lbwa/jsonp.git"
},
"keywords": [
"jsonp",
"fetch",
"front-end",
"cross-domain-solution",
"cors",
"browser",
"promise",
"http",
"ajax",
"es6"
],
"author": "Bowen (lbwa)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lbwa/jsonp/issues"
},
"homepage": "https://github.com/lbwa/jsonp#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"chalk": "^2.4.1",
"commitizen": "^2.10.1",
"conventional-changelog-cli": "^2.0.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"execa": "^0.10.0",
"rollup": "^0.60.7",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-terser": "^1.0.1",
"rollup-plugin-typescript2": "^0.15.0",
"typescript": "^2.9.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}