-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.37 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
{
"name": "readyjs",
"version": "2.0.0",
"description": "A tiny, modern, on-document-ready that runs any given function(s) once the document is ready or immediately if the document is ready already.",
"main": "dist/ready.js",
"config": {
"src": "src/ready.ts",
"moduleName": "readyjs"
},
"scripts": {
"build": "npm run test && rollup -c",
"build-no-test": "rollup -c && rollup -c --format=iife --output=dist/$npm_package_config_moduleName.iffe.js --target=es5",
"build:watch": "npm run build -- -w",
"test": "standard 'src/*.js' --parser typescript-eslint-parser | snazzy && tsc src/*.ts --noEmit --pretty --alwaysStrict --noUnusedLocals --target ES5 --lib es6,dom && standard-readme"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuclei/readyjs.git"
},
"keywords": [
"dom-ready",
"ready",
"on-ready",
"dom",
"document-ready"
],
"author": "Lukas Oppermann",
"license": "MIT",
"bugs": {
"url": "https://github.com/nuclei/readyjs/issues"
},
"homepage": "https://github.com/nuclei/readyjs#readme",
"devDependencies": {
"rollup": "^1.21.4",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"typescript": "^3.6.3",
"@typescript-eslint/parser": "^2.3.0",
"snazzy": "^8.0.0",
"standard": "^14.3.1",
"standard-readme": "^2.0.2"
}
}