-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.01 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.01 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
{
"name": "reunderscore",
"version": "1.0.0",
"description": "underScore.js implementation",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run test-node && npm run test-browser",
"test-node": "./node_modules/.bin/mocha --reporter spec",
"test-browser": "./node_modules/karma/bin/karma start karma.conf.js",
"lint": "eslint reunderscore.js test/*.js",
"minify": "uglifyjs reunderscore.js -c \"evaluate=false\" --comments \"/ .*/\" -m",
"build": "npm run minify -- --source-map reunderscore-min.map --source-map-url \" \" -o reunderscore-min.js",
"doc": "./node_modules/.bin/jsdoc -d docs reunderscore.js"
},
"author": "Rob Adelmann",
"license": "MIT",
"dependencies": {
"chai": "^2.3.0",
"eslint": "^3.12.2",
"jsdoc": "^3.4.3",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^0.1.4",
"karma-sinon": "^1.0.5",
"mocha": "^2.2.5",
"sinon": "^1.17.6",
"uglify-js": "^2.7.5"
}
}