-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 802 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 802 Bytes
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
{
"name": "technical-practice",
"version": "0.0.1",
"description": "practice technical coding challenges\"",
"scripts": {
"dev": "webpack --watch",
"test": "mocha --compilers js:babel/register --recursive",
"es5": "babel src --out-dir es5",
"es5-watch" : "babel src --watch --out-dir es5 "
},
"repository": {
"type": "git",
"url": "https://github.com/arkadyp/technical-practice.git"
},
"author": "arkady pevzner",
"license": "ISC",
"bugs": {
"url": "https://github.com/arkadyp/technical-practice/issues"
},
"homepage": "https://github.com/arkadyp/technical-practice",
"devDependencies": {
"babel": "^5.6.14",
"babel-core": "^5.6.17",
"babel-loader": "^5.3.1",
"chai": "^3.0.0",
"mocha": "^2.2.5",
"webpack": "^1.10.1"
}
}