-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
55 lines (55 loc) · 1.36 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": "pumascript",
"version": "0.3.0",
"description": "Easy Metaprograming for JS",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pumascript/puma.git"
},
"bugs": {
"url": "https://github.com/pumascript/puma/issues"
},
"author": {
"name": "PumaScript Team",
"email": "[email protected]",
"url": "https://github.com/pumascript"
},
"keywords": [
"meta-programming",
"metaprogramming",
"ecma",
"ecmascript",
"javascript",
"puma"
],
"main": "dist/pumascript.js",
"bin": {
"pumascript": "bin/pumascript.js"
},
"engines": {
"node": ">= 6.0.0"
},
"license": "MIT",
"dependencies": {
"commander": "2.11.0",
"esprima": "4.0.0",
"requirejs": "2.3.5"
},
"devDependencies": {
"eslint": "^4.8.0",
"grunt": "1.0.1",
"grunt-contrib-clean": "1.1.0",
"grunt-contrib-qunit": "0.5.1",
"grunt-contrib-uglify": "3.1.0",
"grunt-eslint": "^20.1.0",
"grunt-exec": "3.0.0",
"load-grunt-tasks": "3.5.2",
"node-qunit-phantomjs": "1.6.0",
"qunitjs": "2.4.1",
"webpack": "2.2.1"
},
"scripts": {
"test": "grunt test",
"prepublish": "grunt build"
}
}