-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.84 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "ko-component-tester",
"version": "3.2.1",
"description": "automated testing for KnockoutJS components",
"repository": "profiscience/ko-component-tester",
"homepage": "https://github.com/Profiscience/ko-component-tester",
"bugs": "https://github.com/Profiscience/ko-component-tester/issues",
"main": "dist/ko-component-tester.js",
"scripts": {
"build": "webpack && uglifyjs dist/ko-component-tester.js -o dist/ko-component-tester.min.js",
"watch": "webpack --watch",
"prepublish": "npm run build && npm run stage-dist",
"stage-dist": "git add dist",
"test": "karma start karma.travis.js",
"test:watch": "karma start"
},
"precommit": [
"build",
"stage-dist"
],
"author": "Michael Barshinger <michael.barshinger@profiscience.com>",
"contributors": [
"Casey Webb <notcaseywebb@gmail.com>",
"Michael Barshinger <michael.barshinger@profiscience.com>"
],
"license": "WTFPL",
"devDependencies": {
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.3.0",
"coveralls": "^2.11.9",
"eslint": "^3.0.1",
"eslint-config-profiscience": "^1.0.1",
"isparta-loader": "^2.0.0",
"jquery": "^3.0.0",
"karma": "^1.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.1",
"knockout": "^3.4.0",
"lodash": "^4.11.2",
"mocha": "^3.0.2",
"mocha-loader": "^0.7.1",
"pre-commit": "^1.1.2",
"simulate-event": "^1.4.0",
"sinon": "^2.0.0-pre",
"uglify-js": "^2.4.24",
"webpack": "^1.13.0"
},
"peerDependencies": {
"jquery": ">= 2.2.0",
"knockout": "^3.4.0"
}
}