-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.84 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
{
"name": "mfun",
"description": "",
"license": "LGPL-2.1",
"version": "0.0.1",
"keywords": [
"functional",
"abstract-machine"
],
"homepage": "https://github.com/d-plaindoux/mFun",
"author": {
"name": "Didier Plaindoux",
"email": "[email protected]",
"url": "d.plaindoux.free.fr"
},
"repository": {
"type": "git",
"url": "https://github.com/d-plaindoux/mFun"
},
"licenses": [
{
"type": "LGPL2"
}
],
"main": "build/lib/index.js",
"engines": {
"node": ">= 5.7.0"
},
"scripts": {
"prepublish": "echo '--- Prepublishing ---\n' && npm run test && npm run compile",
"compile": "rimraf build/ && mkdirp build && babel src --out-dir build --source-maps",
"dev": "babel --watch src --out-dir dist",
"lint": "eslint src/**",
"test": "npm run compile && nodeunit build/test/index.js",
"cover": "rimraf coverage && mkdirp coverage && babel-node node_modules/.bin/babel-istanbul cover --dir coverage/istanbul node_modules/.bin/nodeunit src/test/index.js",
"coveralls": "cat coverage/istanbul/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rimraf ./coverage",
"check": "npm run lint && npm run test && npm run cover && npm run coveralls",
"dist": "rimraf dist/ && mkdirp dist && npm run compile && browserify --standalone mFun -t uglifyify build/lib/index.js -o dist/mFun.min.js",
"clean": "rimraf dist/ && rimraf coverage/ && rimraf build/"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-istanbul": "^0.8.0",
"babel-preset-es2015": "^6.9.0",
"browserify": "~9.0.3",
"coveralls": "~2.11.2",
"eslint": "^3.3.0",
"nodeunit": "~0.9.1",
"uglifyify": "^3.0.4",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.1"
},
"dependencies": {
"@masala/parser": "^0.8.1"
}
}