-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 840 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 840 Bytes
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
{
"name": "@atlas-viewer/dna",
"version": "0.3.1",
"main": "dist/umd/@atlas-viewer/dna.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"author": "Stephen Fraser <stephen.fraser@digirati.com>",
"license": "MIT",
"scripts": {
"build": "fesk-build --cjs --umd && tsc -p ./ --emitDeclarationOnly",
"start": "fesk-start --cjs --noServer",
"test": "jest",
"build-types": "tsc -p ./ --emitDeclarationOnly",
"prepare": "NODE_ENV=production fesk-build --cjs --umd && tsc -p ./ --emitDeclarationOnly"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@fesk/scripts": "^1.2.1",
"@types/jest": "^24.0.17",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"files": [
"dist",
"lib"
],
"fesk": {
"typescript": true
}
}