-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
55 lines (50 loc) · 1.48 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
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
{
"name": "angular_example",
"version": "0.0.1",
"description": "An example for using Karma and Jasmine to unit test an Angular app.",
"repository": {
"type": "git",
"url": "git://github.com/chazzlabs/angular_example.git"
},
"dependencies": {
"angular": "^1.4.1"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"eslint": "^1.6.0",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.5.1",
"rimraf": "^2.4.3",
"angular-mocks": "^1.4.1",
"jasmine-core": "^2.3.4",
"karma": "^0.12.37",
"karma-chrome-launcher": "^0.2.0",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.0",
"phantomjs": "^1.9.17"
},
"scripts": {
"pretest": "npm run clean:tmp && npm run babel:test && npm run lint",
"test": "karma start",
"lint": "eslint app/**/*.js",
"babel:test": "babel app --out-dir .tmp",
"babel:dist": "babel app --out-dir dist",
"clean:tmp": "rimraf -rf .tmp/",
"clean:dist": "rimraf -rf dist/",
"prebuild": "npm run clean",
"build": "npm run clean && npm run lint && npm run babel:dist",
"ci:test": "npm install && npm test"
},
"keywords": [
"angularjs",
"karma",
"jasmine",
"test",
"testing",
"js",
"javascript"
],
"author": "chazzlabs",
"license": "ISC"
}