-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
45 lines (45 loc) · 971 Bytes
/
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
{
"name": "amdclean",
"version": "2.7.0",
"description": "A build tool that converts AMD code to standard JavaScript",
"main": "./src/amdclean",
"repository": {
"type": "git",
"url": "https://github.com/gfranko/amdclean.git"
},
"keywords": [
"amd",
"requirejs",
"modules",
"convert"
],
"author": {
"name": "Greg Franko",
"url": "http://gregfranko.com"
},
"scripts": {
"test": "jasmine-node test/specs/ --matchall"
},
"dependencies": {
"esprima": "1.x",
"lodash": "2.x",
"estraverse": "1.x",
"escodegen": "1.x",
"sourcemap-to-ast": "0.0.2"
},
"devDependencies": {
"jasmine-node": "~1.14.3",
"gulp": "~3.8.8",
"gulp-uglify": "~0.1.0",
"gulp-jshint": "~1.3.2",
"gulp-jasmine": "~0.1.1",
"gulp-rename": "~0.2.1",
"jasmine-only": "~0.1.0",
"requirejs": "~2.1.11",
"gulp-insert": "~0.3.0"
},
"engine": {
"node": ">= 0.8"
},
"license": "MIT"
}