forked from vi-plugins/jquery-accordion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.35 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
{
"name": "jquery-accordion",
"version": "0.1.0",
"description": "A TypeScript accordion plugin",
"main": "dist/accordion.min.js",
"module": "src/index.ts",
"typings": "src/index.d.ts",
"repository": "https://github.com/vi-plugins/jquery-accordion.git",
"author": "Jan Rembold <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npm run clean && webpack",
"serve": "npm run clean && parallelshell \"npm run server -s\" \"webpack --watch\"",
"clean": "rimraf dist",
"server": "live-server --port=9090 --open=./example --watch=dist,example",
"pretest": "npm run build",
"test": "npm run --silent test:unit",
"test:unit": "tsc --module commonjs ./test/unit/*.ts && mocha ./test/unit/*.js"
},
"devDependencies": {
"@types/jquery": "^2.0.39",
"@types/mocha": "^2.2.38",
"chai": "^3.5.0",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "2.0.0-rc.3",
"mocha": "^3.2.0",
"node-sass": "^4.5.0",
"parallelshell": "^2.0.0",
"rimraf": "^2.5.4",
"sass-loader": "^5.0.0",
"source-map-loader": "^0.1.6",
"ts-loader": "^2.0.0",
"typescript": "^2.1.5",
"uglify-js": "^2.7.5",
"webpack": "^2.2.1",
"webpack-node-externals": "^1.5.4"
},
"dependencies": {
"jquery-base": "https://github.com/vi-plugins/jquery-base.git",
"jquery-events": "https://github.com/vi-plugins/jquery-events.git",
"live-server": "^1.2.0"
}
}