forked from snychka/javascript-string-manipulation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.06 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.06 KB
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
{
"name": "create-a-string-manipulation-library-in-js",
"version": "1.0.0",
"description": "In this project, we’ll create a JavaScript library for manipulating the line break characters in strings. We’ll make this functionality available to import in JavaScript code and for use on the command line.",
"repository": "github:pluralsight-projects/javascript-string-manipulation",
"main": "src/index.js",
"scripts": {
"test": "cross-env NODE_ENV=test mocha './test/**/*.spec.js' || true",
"test:module1": "echo 'There are no tests for module 1 (Setup)'",
"test:module2": "cross-env NODE_ENV=test mocha './test/module-2/*.spec.js' || true",
"test:module3": "cross-env NODE_ENV=test mocha './test/module-3/*.spec.js' || true"
},
"bin": {
"crlf-convert": "./src/cli.js"
},
"author": "AJ Foster (https://aj-foster.com)",
"license": "UNLICENSED",
"dependencies": {
"chai": "^4.2.0",
"cross-env": "^7.0.0",
"esprima": "^4.0.1",
"mocha": "^6.2.2",
"sinon": "^8.0.4"
},
"devDependencies": {
"eslint": "^6.6.0"
}
}