This repository was archived by the owner on Jan 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.28 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
48
49
{
"name": "softlicense",
"version": "3.0.1",
"description": "Javascript library for license generating and checking",
"main": "dist/min/Checker.js",
"bin": {
"softlicense-cli": "./main.js"
},
"scripts": {
"clean": "grunt clean",
"test": "grunt test",
"lint": "grunt lint",
"build": "grunt build",
"compress": "grunt compress",
"watch": "grunt watch",
"default": "npm run clean && npm run test && npm run lint && npm run build && npm run compress"
},
"author": "Dominik Weidenfeld",
"repository": {
"type": "git",
"url": "https://github.com/dweidenfeld/softlicense"
},
"bugs": {
"url": "https://github.com/dweidenfeld/softlicense/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.com/"
},
"license": "MIT",
"devDependencies": {
"babel": "^5.1.13",
"chai": "^2.3.0",
"grunt": "^0.4.5",
"grunt-babel": "^5.0.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-uglify": "^0.9.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-jspacker": "^0.1.1",
"grunt-mocha-test": "^0.12.7",
"jshint-stylish": "^1.0.1",
"load-grunt-tasks": "^3.1.0",
"mocha": "^2.2.4"
},
"dependencies": {
"minimist": "^1.1.1"
}
}