This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.95 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
{
"name": "think-npm",
"version": "0.1.2",
"description": "Thinkific Theme CLI Tool",
"bin": {
"thinkcli": "./bin/think.js"
},
"preferGlobal": true,
"scripts": {
"start": "think.js",
"test": "NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --colors test/**/*.spec.js",
"watch-lint": "NODE_ENV=test ./node_modules/.bin/nodemon ./node_modules/.bin/eslint src/**/*.js",
"watch-test": "NODE_ENV=test ./node_modules/.bin/nodemon ./node_modules/.bin/_mocha --colors test/**/*.spec.js",
"watch-ctest": "NODE_ENV=test ./node_modules/.bin/nodemon ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --colors test/**/*.spec.js",
"watch-all": "concurrently --kill-others \"npm run watch-ctest\" \"npm run watch-lint\"",
"check-coverage": "./node_modules/.bin/istanbul check-coverage --statements 71.43 --functions 0 --branches 50 --lines 71.43 test/**/*.spec.js",
"check-lint": "./node_modules/.bin/eslint src/**/*.js",
"fix-lint": "./node_modules/.bin/eslint src/**/*.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thinkific/think-npm.git"
},
"engine": {
"node": ">=7.9.0"
},
"author": "Jesus Rodriguez<[email protected]>",
"private": true,
"bugs": {
"url": "https://github.com/thinkific/think-npm/issues"
},
"homepage": "https://github.com/thinkific/think-npm#readme",
"devDependencies": {
"concurrently": "^3.4.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.3.0",
"nock": "^9.0.13",
"nodemon": "^1.11.0",
"rewire": "^2.5.2",
"should": "^11.2.1",
"sinon": "^2.2.0"
},
"dependencies": {
"async": "^2.4.1",
"chalk": "^1.1.3",
"chokidar": "^1.7.0",
"extract-zip": "^1.6.5",
"mime": "^1.3.6",
"request": "^2.81.0"
}
}