-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.42 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
{
"name": "@shinin/load-script",
"version": "1.0.4",
"description": "Load script asynchronously.",
"main": "dist/load-script.cjs.js",
"repository": "https://github.com/shiningjason/load-script",
"author": "Jason Chung <shiningjason1989@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist/"
],
"keywords": [
"browser",
"script",
"load",
"load-js",
"async",
"promise"
],
"scripts": {
"format": "prettier --single-quote --no-semi --write *.js",
"lint": "eslint *.js",
"build": "rollup --config",
"test": "NODE_ENV=test mocha test --require @babel/register"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"@babel/register": "^7.0.0",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jsdom": "^13.0.0",
"mocha": "^5.2.0",
"prettier": "^1.15.1",
"rollup": "^0.67.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-uglify": "^6.0.0"
},
"babel": {
"env": {
"test": {
"presets": [
"@babel/env"
]
}
}
},
"eslintConfig": {
"extends": [
"standard",
"prettier",
"prettier/standard"
]
}
}