UNPKG

2.14 kBJSONView Raw
1{
2 "name": "nps",
3 "version": "5.7.1",
4 "description": "All the benefits of npm scripts without the cost of a bloated package.json and limits of json",
5 "main": "dist/index",
6 "scripts": {
7 "start": "nps",
8 "test": "nps test",
9 "localstart": "npm start build && node ./dist/bin/nps.js",
10 "precommit": "lint-staged && opt --in pre-commit --exec \"npm start validate\""
11 },
12 "bin": {
13 "nps": "./dist/bin/nps.js"
14 },
15 "files": [
16 "dist"
17 ],
18 "keywords": [],
19 "author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
20 "license": "MIT",
21 "dependencies": {
22 "arrify": "^1.0.1",
23 "chalk": "^2.0.1",
24 "common-tags": "^1.4.0",
25 "find-up": "^2.1.0",
26 "js-yaml": "^3.9.0",
27 "lodash": "^4.17.4",
28 "manage-path": "^2.0.0",
29 "prefix-matches": "^1.0.1",
30 "readline-sync": "^1.4.7",
31 "spawn-command-with-kill": "^1.0.0",
32 "type-detect": "^4.0.3",
33 "yargs": "^8.0.2"
34 },
35 "devDependencies": {
36 "all-contributors-cli": "^4.3.0",
37 "babel-cli": "^6.24.1",
38 "babel-eslint": "^7.2.3",
39 "babel-jest": "^20.0.3",
40 "babel-plugin-module-resolver": "^2.7.1",
41 "babel-preset-env": "^1.6.0",
42 "babel-preset-stage-2": "^6.24.1",
43 "babel-register": "^6.24.1",
44 "cross-env": "^5.0.1",
45 "eslint": "^3.15.0",
46 "eslint-config-kentcdodds": "^12.4.1",
47 "eslint-plugin-babel": "4.1.1",
48 "eslint-plugin-import": "2.7.0",
49 "eslint-plugin-jest": "20.0.3",
50 "husky": "0.14.3",
51 "jest-cli": "^20.0.4",
52 "lint-staged": "^4.0.1",
53 "nps": "^5.4.0",
54 "nps-utils": "^1.2.0",
55 "opt-cli": "^1.5.1",
56 "prettier-eslint-cli": "^4.1.1",
57 "sinon": "^1.17.7"
58 },
59 "eslintConfig": {
60 "extends": [
61 "kentcdodds",
62 "kentcdodds/jest",
63 "kentcdodds/prettier"
64 ],
65 "rules": {
66 "max-len": "off"
67 }
68 },
69 "lint-staged": {
70 "*.js": [
71 "prettier-eslint --write",
72 "git add"
73 ]
74 },
75 "repository": {
76 "type": "git",
77 "url": "https://github.com/kentcdodds/nps.git"
78 },
79 "bugs": {
80 "url": "https://github.com/kentcdodds/nps/issues"
81 },
82 "homepage": "https://github.com/kentcdodds/nps#readme"
83}
\No newline at end of file