-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 873 Bytes
/
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
{
"name": "yac",
"version": "0.0.2",
"description": "Yet another javascript class inheritance library",
"main": "lib/class.js",
"scripts": {
"clean": "rm -Rf dist/;",
"start": "broccoli serve",
"test": "mocha --reporter spec test/*_test.js",
"build": "npm run clean && BROCCOLI_ENV=production broccoli build dist",
"benchmark": "node --allow-natives-syntax benchmarks/all.js"
},
"repository": {
"type": "git",
"url": "https://github.com/marcioj/yac.git"
},
"author": "marcioj",
"license": "MIT",
"devDependencies": {
"benchmark": "^1.0.0",
"broccoli": "^0.16.5",
"broccoli-browserify": "^0.1.0",
"broccoli-env": "0.0.1",
"broccoli-funnel": "^0.2.3",
"broccoli-merge-trees": "^0.2.0",
"broccoli-uglify-js": "^0.1.3",
"chai": "^3.2.0",
"mocha": "^2.2.5",
"mocha-jshint": "2.2.3"
}
}