-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.4 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
{
"name": "dragster.js",
"version": "1.0.0",
"description": "Drag and drop framework based on Dragula, rewritten in Typescript",
"main": "index.js",
"files": [
"index.js",
"index.d.ts",
"dist/*.js",
"lib/**/*.js",
"lib/**/*.d.ts"
],
"scripts": {
"build:static": "tsc && webpack ./build/dragster-static.js ./dist/dragster.js && webpack ./build/dragster-static.js ./dist/dragster.min.js --optimize-minimize",
"build:demo": "tsc && webpack ./build/dragster-static.js ./docs/dragster.min.js --optimize-minimize",
"prepublish": "npm run test && tsc && npm run build:static",
"watch": "tsc && webpack ./build/dragster-static.js ./dist/dragster.js --watch",
"test": "tsc && browserify tests/*.spec.js | tape-run",
"lint": "tslint **/*.ts !**/*.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conclurer/dragster.js.git"
},
"author": "Conclurer GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/conclurer/dragster.js/issues"
},
"homepage": "https://github.com/conclurer/dragster.js#readme",
"devDependencies": {
"@types/es6-shim": "^0.0.29",
"@types/tape": "^4.2.27",
"browserify": "^13.1.0",
"rxjs": "^5.0.0",
"tape": "^4.6.0",
"tape-run": "^2.1.4",
"tslint": "^3.13.0",
"typescript": "~2.0.0",
"webpack": "^2.1.0-beta.27"
},
"peerDependencies": {
"rxjs": "^5.0.0"
}
}