This repository was archived by the owner on Jan 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.36 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.36 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
{
"name": "@yr/classlist",
"description": "Ponyfill to fix element.classList browser inconsistencies",
"version": "4.0.0",
"author": "Alexander Pope <alexander.pope@nrk.no>, Simen Sægrov <simen.sagrov@nrk.no",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/karma": "^1.7.3",
"@types/mocha": "^2.2.48",
"cash-mv": "^0.2.0",
"chai": "^4.1.2",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "^3.0.12",
"mkdirp": "^0.5.1",
"mocha": "^5.0.5",
"prettier": "^1.11.1",
"ts-node": "^5.0.1",
"typescript": "^2.8.1"
},
"main": "dist/index",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"repository": "https://github.com/YR/classlist.git",
"license": "MIT",
"scripts": {
"prebuild": "npm run clean && mkdirp dist",
"build": "npm run build-mjs && npm run build-cjs",
"build-cjs": "tsc --module commonjs --target ES5",
"build-mjs": "tsc --module es2015 --target ES2017 && mv dist/index.js dist/index.mjs",
"clean": "rimraf dist/",
"lint": "prettier --list-different \"src/**/*.ts\"",
"test": "npm run lint && karma start --single-run --browsers ChromeHeadless karma.conf.ts",
"prepublish": "npm run build"
}
}