-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.83 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
{
"name": "badi-cal",
"version": "2.0.0",
"description": "A module for calculating dates within the Badi Calendar",
"main": "build-v2",
"scripts": {
"clean-build": "rm -rf build-v2 browser-build-v1 browser-build-v2 examples/example1/browser-build-v1",
"create-build": "npm-run-all --parallel create-build:*",
"create-build:browser-v1": "webpack --config webpack.config.v1.js",
"create-build:browser-v2": "webpack --config webpack.config.v2.js",
"create-build:example1": "webpack --config webpack.config.example1.js",
"create-build:v2": "babel src --out-dir build-v2 --ignore v1,v2,__tests__,examples,testUtils.js",
"lint": "esw webpack.config.* src --color",
"lint-watch": "npm run lint -- --watch",
"start-example1": "http-server examples/example1",
"test": "jest",
"test-watch": "npm run test -- --watch",
"validate": "npm ls"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bchurchill/badi-cal.git"
},
"author": "Berkeley Churchill",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/bchurchill/badi-cal/issues"
},
"homepage": "https://github.com/bchurchill/badi-cal#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.22.2",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-syntax-trailing-function-commas": "^6.20.0",
"babel-preset-latest": "^6.16.0",
"eslint": "^3.13.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^1.0.2",
"eslint-watch": "^2.1.14",
"jest": "^18.1.0",
"jest-cli": "^18.1.0",
"precommit-hook": "^3.0.0",
"webpack": "^1.14.0"
},
"dependencies": {
"http-server": "^0.9.0",
"npm-run-all": "^4.0.1"
}
}