-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.55 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
{
"name": "@asymmetrik/sentio",
"artifactName": "sentio",
"moduleName": "sentio",
"description": "Custom d3 data visualizations",
"version": "6.0.0",
"author": "Asymmetrik, Ltd.",
"copyright": "Copyright Asymmetrik, Ltd. 2007-2021 - All Rights Reserved.",
"license": "UNLICENSED",
"scripts": {
"build": "npm run bundle && npm run test",
"prebuild": "npm run lint",
"bundle": "npm run bundle:styles && npm run bundle:code",
"bundle:code": "npm run rollup && npm run uglify",
"bundle:styles": "npm run node-sass",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint 'src/**/*.js'",
"stylelint": "stylelint './src/**/*.scss'",
"node-sass": "node-sass --source-map true --output-style compressed src/index.scss dist/sentio.css",
"rollup": "rollup -c rollup.config.js",
"test": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"uglify": "uglifyjs --comments -o ./dist/sentio.min.js -- ./dist/sentio.js",
"watch": " watch 'npm run build' ./src"
},
"main": "dist/sentio.js",
"module": "index.js",
"typings": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Asymmetrik/sentio.git"
},
"peerDependencies": {
"d3": "7"
},
"devDependencies": {
"@types/d3": "7",
"d3": "7",
"eslint": "8",
"karma": "6",
"karma-chrome-launcher": "3",
"karma-mocha": "2",
"karma-should": "1",
"mocha": "9",
"node-sass": "7",
"rollup": "2",
"should": "13.2",
"stylelint": "14",
"stylelint-config-recommended-scss": "5",
"stylelint-scss": "4",
"uglify-js": "3.14",
"watch": "1"
}
}