-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.49 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "spraypaint-vue",
"version": "0.0.3",
"description": "Vue bindings for Spraypaint Graphiti Client",
"main": "dist/spraypaint-vue.js",
"module": "lib/spraypaint-vue.js",
"author": "Lee Richmond",
"license": "MIT",
"files": [
"src",
"dist",
"README.md"
],
"scripts": {
"prebuild": "tsc -p ./tsconfig.json",
"build": "npm-run-all --parallel build:dev build:prod",
"build:dev": "NODE_ENV=development ./node_modules/.bin/rollup -c",
"build:prod": "NODE_ENV=production ./node_modules/.bin/rollup -c",
"build:watch": "NODE_ENV=watch ./node_modules/.bin/tsc --watch -p .",
"coverage": "npm run pretest && node --harmony ./node_modules/istanbul/lib/cli.js cover --root ./build/src --report lcov --report text ./node_modules/mocha/bin/_mocha ./build/test/**/*.js",
"clean": "rimraf ./dist ./build ./coverage ./lib",
"pretest": "tsc -p ./tsconfig.test.json",
"test": "NODE_ENV=test mocha 'test/**/*.test.ts'",
"test:jsdom": "NODE_ENV=test mocha --require test/setup/setup-dom.js 'test/**/*.test.ts'",
"test:watch": "NODE_ENV=watch multi=\"mocha-osx-reporter=- spec=-\" mocha 'test/**/*.test.ts' --reporter mocha-multi --watch",
"debug": "npm-run-all clean pretest",
"lint": "npm-run-all --parallel lint:src lint:tests",
"lint:src": "tslint src/**/*.ts src/**/*.tsx ",
"lint:tests": "tslint test/**/*.test.ts test/**/*.test.tsx",
"update:dependencies": "ncu -u"
},
"devDependencies": {
"@types/chai": "4.0.4",
"@types/mocha": "2.2.44",
"@types/node": "^8.0.47",
"@types/sinon": "2.3.7",
"@types/sinon-chai": "2.7.29",
"chai": "4.1.2",
"codecov": "3.0.0",
"coveralls": "3.0.0",
"ignore-styles": "5.0.1",
"istanbul": "0.4.5",
"jsdom": "11.3.0",
"mocha": "4.0.1",
"mocha-let-ts": "1.1.0",
"mocha-multi": "^0.11.1",
"mocha-osx-reporter": "^0.1.2",
"npm-check-updates": "2.13.0",
"npm-run-all": "4.1.1",
"rimraf": "2.6.2",
"rollup": "0.50.0",
"rollup-plugin-buble": "0.16.0",
"rollup-plugin-commonjs": "8.2.6",
"rollup-plugin-copy": "0.2.3",
"rollup-plugin-replace": "2.0.0",
"rollup-plugin-typescript2": "0.8.0",
"rollup-plugin-uglify": "2.0.1",
"sinon": "4.0.2",
"sinon-chai": "2.14.0",
"ts-node": "3.3.0",
"tslint": "5.8.0",
"typescript": "2.6.1",
"vue": "^2.5.13"
},
"peerDependencies": {
"vue": "^2.5.13"
},
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}