-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "waldojs",
"version": "0.1.9",
"description": "Find things in your JS object tree",
"author": "Angus Croll",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/angus-c/waldojs.git"
},
"main": "lib/waldo.js",
"scripts": {
"bookmarklet": "cat src/bm/pre.txt lib/waldobundle.min.js src/bm/post.txt > lib/bookmarklet.txt",
"bundle": "webpack",
"compile": "babel --optional runtime src --out-dir lib",
"env": "env",
"minify": "uglifyjs lib/waldobundle.js -o lib/waldobundle.min.js",
"prepublish": "npm run compile && npm run bundle && npm run minify && npm run bookmarklet",
"test": "npm run prepublish && karma start --single-run",
"testc": "npm run prepublish && karma start --auto-watch"
},
"keywords": [
"javascript",
"find",
"match",
"node",
"properties",
"search"
],
"devDependencies": {
"babel": "^5.8.29",
"babel-core": "^5.8.29",
"babel-loader": "^5.3.2",
"eslint": "^1.7.3",
"jasmine-core": "^2.3.4",
"karma": "^0.13.14",
"karma-chrome-launcher": "^0.2.1",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "^0.3.6",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"uglify-js": "^2.5.0"
},
"dependencies": {
"babel-runtime": "^5.5.8",
"just-compare": "^1.1.19"
}
}