-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.55 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
{
"name": "@sndrs/ok",
"version": "0.3.5",
"description": "Run `npm-scripts` in the correct environment without further installation or config.",
"homepage": "https://github.com/sndrs/ok#readme",
"bugs": {
"url": "https://github.com/sndrs/ok/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sndrs/ok.git"
},
"license": "MIT",
"author": "Alex Sanders",
"bin": {
"ok": "dist/ok.js"
},
"files": [
"dist/*"
],
"scripts": {
"build": "yarn run clean && rollup -c && chmod +x dist/ok.js",
"clean": "rm -rf dist",
"dev": "rollup -c -w && chmod +x dist/ok.js",
"np": "yarn run build && np",
"nothing": "echo 'done nothing'"
},
"prettier": "@guardian/prettier",
"dependencies": {
"chalk": "^4.1.0",
"get-node": "^11.0.2",
"nvexeca": "6.0.1",
"ora": "^5.2.0",
"preferred-pm": "^3.0.2",
"read-pkg-up": "^7.0.1",
"semver": "^7.3.4",
"update-notifier": "5.0.1",
"yarn": "1.22.10"
},
"devDependencies": {
"@guardian/prettier": "^0.4.2",
"@robmarr/rollup-plugin-shebang": "^1.0.1",
"@rollup/plugin-typescript": "^8.1.0",
"@types/node": "14.14.18",
"@types/preferred-pm": "^2.0.0",
"@types/semver": "^7.3.4",
"@types/update-notifier": "5.0.0",
"np": "^7.2.0",
"prettier": "^2.2.1",
"rollup": "^2.35.1",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=10.17.0 <13.10.0 || >=13.11.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}