-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "sugar-sketcher",
"version": "0.0.2",
"description": "A tiny library to build sugars in javascript",
"main": "",
"directories": {
"test": "test"
},
"dependencies": {
"enumify": "^1.0.4"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"gulp": "^3.9.1",
"jshint": "^2.8.0",
"karma": "^1.7.0",
"karma-browserify": "^4.4.2",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^1.1.0",
"karma-coveralls": "^1.1.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-qunit": "^0.1.4",
"phantomjs": "^1.9.17",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.7",
"precommit-hook": "^3.0.0",
"promise-polyfill": "^2.0.2",
"qunit": "^0.7.6",
"qunitjs": "^1.18.0",
"webpack": "^1.13.1",
"webpack-stream": "^3.2.0"
},
"scripts": {
"testwin": "cd ./node_modules/karma/bin/ && karma start --single-run --browsers PhantomJS",
"testmac": "./node_modules/karma/bin/karma start --single-run --browsers PhantomJS",
"lint": "jshint .",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "[email protected]:alodavide/sugarSketcher.git"
},
"author": "",
"license": "Apache Version 2.0",
"pre-commit": [
"lint",
"validate",
"test"
]
}