-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 KB
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
{
"name": "almost",
"version": "v1.0.2",
"description": "ALMOsT is an AgiLe MOdel Transformation framework for JavaScript",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/B3rn475/almostjs.git"
},
"author": "Carlo Bernaschina (GitHub: B3rn475)",
"license": "MIT",
"licenses": {
"type": "MIT",
"url": "http://github.com/B3rn475/almostjs/raw/master/LICENSE"
},
"bugs": {
"url": "https://github.com/B3rn475/almostjs/issues"
},
"homepage": "https://github.com/B3rn475/almostjs#readme",
"devDependencies": {
"browserify": "^13.0.0",
"coveralls": "^3.0.9",
"exposify": "^0.5.0",
"gulp": "^4.0.0",
"gulp-extract-sourcemap": "^0.1.6",
"gulp-rename": "^2.0.0",
"gulp-rimraf": "^1.0.0",
"gulp-uglify": "^3.0.2",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"sinon": "^4.4.2",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"almost-core": "^1.0.1",
"almost-extend": "^1.0.0",
"lodash": "^4.17.4"
},
"scripts": {
"test": "mocha",
"coverage": "nyc npm test",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"build": "gulp",
"prepublish": "gulp"
}
}