-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "mytacism",
"version": "0.2.2",
"description": "Evaluates statically-analyzable expressions in Javascript",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"dependencies": {},
"peerDependencies": {
"recast": "^0.10.34"
},
"devDependencies": {
"babel": "5.8.29",
"espower-babel": "3.3.0",
"mocha": "2.3.3",
"power-assert": "1.1.0"
},
"scripts": {
"test": "mocha --reporter dot --compilers js:espower-babel/guess --ui qunit --recursive test",
"test-watch": "mocha --growl --watch --reporter min --compilers js:espower-babel/guess --ui qunit --recursive test",
"prepublish": "npm prune && npm run build && npm run examples && npm test",
"build": "babel src --out-dir lib --source-maps",
"examples": "node ./examples/build.js"
},
"repository": {
"type": "git",
"url": "git://github.com/Flaise/mytacism.git"
},
"homepage": "https://github.com/Flaise/mytacism",
"keywords": [
"static",
"eval",
"analysis",
"static analysis",
"preprocessor",
"preprocess",
"evaluation"
],
"author": {
"name": "Flaise",
"email": "[email protected]"
},
"license": "MIT"
}