-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.12 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
{
"name": "ng-es6-mocha",
"version": "1.0.0",
"description": "Proof Of Concept: Angular, Browserify, Mocha and ES6 Modules to simplify unit tests",
"main": "index.html",
"repository": {
"type": "git",
"url": "[email protected]:teone/POC-ng-es6-mocha.git"
},
"scripts": {
"test": "mocha --compilers js:babel/register --recursive spec/ --watch",
"browserify": "browserify src/app/index.js -t babelify -d --outfile dist/bundle.js",
"server": "browser-sync start --files \"dist/main.css,dist/bundle.js,index.html\" --server ./ --reload-delay 1000",
"watch": "watchify -t babelify src/app/index.js -o dist/bundle.js",
"prestart": "npm install",
"start": "npm run browserify && parallelshell \"npm run watch\" \"npm run server\" \"npm test\""
},
"author": "Matteo Scandolo",
"license": "MIT",
"devDependencies": {
"babel": "^5.8.23",
"babelify": "^6.3.0",
"browser-sync": "^2.9.3",
"browserify": "^11.1.0",
"chai": "^3.2.0",
"eslint": "^1.4.1",
"parallelshell": "^2.0.0",
"sinon": "^1.16.1",
"watchify": "^3.4.0"
},
"dependencies": {
"angular": "^1.4.5"
}
}