-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.44 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": "jamon",
"version": "0.1.0",
"description": "Another DOM library",
"main": "jamon.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run pack && karma start --single-run",
"pack": "babili jamon.js --out-file jamon.min.js",
"start": "npm run pack -- --watch & karma start"
},
"repository": {
"type": "git",
"url": "https://github.com/jamonserrano/jamon.git"
},
"keywords": [
"DOM",
"ES6"
],
"author": "Viktor Honti",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamonserrano/jamon/issues"
},
"homepage": "https://github.com/jamonserrano/jamon",
"devDependencies": {
"babili": "^0.0.10",
"chai": "^3.5.0",
"chai-dom": "~1.4.0",
"karma": "^1.4.0",
"karma-calling": "^1.0.0",
"karma-chai": "~0.1.0",
"karma-chai-dom": "~1.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.0.0",
"karma-coveralls": "^1.1.2",
"karma-eslint": "~2.2.0",
"karma-firefox-launcher": "^1.0.0",
"karma-fixture": "~0.2.6",
"karma-html2js-preprocessor": "~1.1.0",
"karma-mocha": "~1.3.0",
"karma-sauce-launcher": "~1.1.0",
"mocha": "^3.2.0",
"onchange": "~3.2.1",
"pre-commit": "~1.2.2"
},
"eslintConfig": {
"extends": "eslint:recommended",
"strict": "global",
"env": {
"browser": true,
"commonjs": true,
"amd": true,
"es6": true
}
},
"pre-commit": "test"
}