-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.39 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
59
60
{
"name": "nevis",
"version": "0.5.0",
"description": "Makes JavaScript more object-orientated",
"homepage": "https://github.com/NotNinja/nevis",
"bugs": {
"url": "https://github.com/NotNinja/nevis/issues"
},
"author": {
"name": "Alasdair Mercer",
"email": "[email protected]",
"url": "https://not.ninja"
},
"license": "MIT",
"keywords": [
"oop",
"object",
"orientated",
"programming",
"class",
"inheritance",
"extend",
"equals",
"hash",
"hashcode",
"builder"
],
"repository": {
"type": "git",
"url": "https://github.com/NotNinja/nevis.git"
},
"devDependencies": {
"chai": "^3.5.0",
"codecov": "^2.2.0",
"eslint-config-notninja": "^0.1.1",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^19.0.0",
"grunt-mocha-istanbul": "^5.0.2",
"grunt-mocha-test": "^0.13.2",
"grunt-rollup": "^1.0.1",
"istanbul": "^0.4.5",
"load-grunt-tasks": "^3.5.2",
"mocha": "^3.3.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.2",
"sinon": "^2.2.0"
},
"main": "index.js",
"browser": "dist/nevis.js",
"scripts": {
"build": "grunt build",
"ci": "grunt ci",
"report-coverage": "codecov",
"test": "grunt test"
}
}