-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "plain-js-refactoring",
"version": "0.0.1",
"description": "This repository is an example repository about refactoring a piece of plain JS into a structured and testable system of files and components.",
"main": "index.js",
"scripts": {
"test": "find ./step_2_oop -name '*.test.js' | xargs ./node_modules/.bin/mocha --compilers js:babel/register --no-deprecation"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antonpkazakov/plain-js-refactoring.git"
},
"keywords": [
"javascript",
"refactoring",
"js",
"plain",
"oop",
"functional"
],
"author": "Anton Kazakov <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/antonpkazakov/plain-js-refactoring/issues"
},
"homepage": "https://github.com/antonpkazakov/plain-js-refactoring#readme",
"devDependencies": {
"babel": "^5.8.38",
"chai": "^4.1.2",
"jquery": "^2.2.0",
"jsdom": "^11.3.0",
"mocha": "^4.0.1",
"sinon": "^4.1.2"
}
}