-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1019 Bytes
/
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
{
"name": "ictinus",
"version": "0.8.0",
"main": "dist/ictinus.js",
"author": "Paris Kasidiaris <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sourcelair/ictinus.git"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/chai-spies": "^0.0.1",
"@types/mocha": "^5.2.2",
"chai": "^4.1.2",
"chai-spies": "^1.0.0",
"http-server": "^0.11.1",
"jsdom": "^11.11.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"node-sass": "^4.9.0",
"rollup": "^0.60.7",
"rollup-plugin-typescript2": "^0.15.0",
"ts-node": "^6.1.1",
"typescript": "^2.9.1"
},
"scripts": {
"prepublish": "yarn tsc && yarn rollup && yarn sass",
"rollup": "rollup -c rollup.config.js",
"sass": "node-sass src/stylesheets/ictinus.scss --output dist --source-map true",
"tsc": "tsc",
"test": "mocha -r ts-node/register -r jsdom-global/register src/**/*.spec.ts",
"start": "http-server ./demo/"
}
}