-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.09 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
{
"name": "micro-requirejs",
"title": "Micro RequireJS",
"description": "Tiny asynchronous dependency loader, that does not require modification of dependent scripts",
"version": "2.0.0",
"keywords": [
"dependency",
"loader",
"AMD",
"micro",
"asynchronous"
],
"author": {
"name": "Dmitry Sheiko",
"url": "http://dsheiko.com"
},
"scripts": {
"build": "uglifyjs rjs.js -o rjs.min.js -c -m",
"lint": "grunt jshint",
"test": "karma start karma.conf.js"
},
"main": "./rjs.js",
"devDependencies": {
"chai": "^4.2.0",
"jasmine-core": "^3.2.1",
"karma": "^3.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^2.0.1",
"uglify-js": "^3.4.9"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/fawek/codepainter/raw/master/LICENSE"
}
],
"maintainers": [
{
"name": "Dmitry Sheiko",
"email": "[email protected]",
"web": "http://dsheiko.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/dsheiko/micro-requirejs.git"
}
}