-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.81 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
{
"name": "@jasonhk/noop-package",
"description": "A package that does absolutely nothing.",
"version": "0.0.3",
"license": "Unlicense",
"author": "Jason Kwok <github@jasonhk.email> (https://jasonhk.net/)",
"homepage": "https://github.com/JasonHK/node-noop-package#readme",
"keywords": [
"noop"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JasonHK/node-noop-package.git"
},
"bugs": {
"url": "https://github.com/JasonHK/node-noop-package/issues"
},
"scripts": {
"test": "npx jest --config=configs/jest.config.json",
"test:coverage": "npm run test -- --coverage",
"build": "npx npm-run-all -ln build:configs --parallel build:src",
"build:configs": "npx tsc --project configs/tsconfig.build.configs.json",
"build:src": "(npx path-exists configs/rollup.config.js || npm run build:configs) && npx rollup --config configs/rollup.config.js",
"release": "npm run prepublishOnly && standard-version",
"prepublishOnly": "npx run-s test build",
"postpublish": "npm run clean:build:src",
"clean": "npx run-s -ln clean:*",
"clean:build": "npx run-s -ln clean:build:*",
"clean:build:src": "npx rimraf -- ./lib ./dist"
},
"main": "./lib/index.js",
"browser": "./dist/noop-package.min.js",
"types": "./index.d.ts",
"dependencies": {
"es5-ext": "0.10.53"
},
"devDependencies": {
"@rollup/plugin-commonjs": "11.0.x",
"@rollup/plugin-node-resolve": "7.1.x",
"@types/jest": "25.1.x",
"@types/node": "13.9.x",
"jest": "25.1.x",
"jest-extended": "0.11.5",
"npm-run-all": "4.1.x",
"path-exists-cli": "1.0.x",
"rimraf": "3.0.x",
"rollup": "2.1.x",
"rollup-plugin-cleanup": "3.1.x",
"rollup-plugin-terser": "5.3.x",
"standard-version": "7.1.x",
"ts-jest": "25.2.1",
"typescript": "3.8.x"
}
}