-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.61 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": "union-find-js",
"version": "0.0.2",
"description": "union find data structure in javascript",
"main": "dist/unionfind.js",
"scripts": {
"build": "npm run clean -s && npm run test -s && webpack --config webpack.config.js && uglifyjs dist/unionfind.js -c -m -o dist/unionfind.min.js",
"clean": "shx rm -rf dist",
"lint": "eslint src/**/*.js tests/**/*.js hwk/**/*.js",
"test": "npm run lint -s && karma start --single-run --browsers PhantomJS --no-auto-watch karma.config.js",
"test:watch": "npm run lint -s && karma start --browsers Chrome karma.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZuchaoWang/union-find-js.git"
},
"author": "Zuchao Wang",
"license": "MIT",
"bugs": {
"url": "https://github.com/ZuchaoWang/union-find-js/issues"
},
"homepage": "https://github.com/ZuchaoWang/union-find-js#readme",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"eslint": "^3.1.1",
"eslint-config-google": "^0.6.0",
"jasmine-core": "^2.4.1",
"karma": "^1.1.1",
"karma-chrome-launcher": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-nyan-reporter": "^0.2.4",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"phantomjs-prebuilt": "^2.1.7",
"shx": "^0.1.4",
"uglify-js": "^2.7.4",
"webpack": "^1.13.1"
},
"dependencies": {},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}