-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
63 lines (63 loc) · 1.47 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
61
62
63
{
"name": "simple-module",
"githubOwner": "mycolorway",
"version": "3.0.3",
"description": "A base class for javascript modules.",
"homepage": "http://mycolorway.github.io/simple-module",
"repository": {
"type": "git",
"url": "https://github.com/mycolorway/simple-module.git"
},
"author": "farthinker",
"license": "MIT",
"bugs": {
"url": "https://github.com/mycolorway/simple-module/issues"
},
"main": "dist/simple-module.js",
"scripts": {
"start": "gulp",
"test": "gulp test"
},
"umd": {
"name": "SimpleModule",
"dependencies": {
"cjs": [
"jquery"
],
"global": [
"jQuery"
],
"params": [
"$"
]
}
},
"dependencies": {
"jquery": "^3.0.0"
},
"devDependencies": {
"browserify": "^13.0.0",
"browserify-coffee-coverage": "^1.1.1",
"chai": "^3.5.0",
"coffee-script": "^1.10.0",
"coffeelint": "^1.15.0",
"coveralls": "^2.11.8",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-util": "^3.0.7",
"istanbul": "^0.4.2",
"karma": "^1.1.1",
"karma-browserify": "^5.0.5",
"karma-chai": "^0.1.0",
"karma-coffee-coverage": "^1.1.2",
"karma-coverage": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.4",
"karma-phantomjs-launcher": "^1.0.0",
"lodash": "^4.13.1",
"mocha": "^2.5.3",
"node-sass": "^3.8.0",
"phantomjs-prebuilt": "^2.1.7",
"through2": "^2.0.1",
"uglify-js": "^2.6.2"
}
}